@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
body {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}

select {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}

:root {
  --app-height: 100%;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

a {
  font-weight: 500;
}

img {
  max-width: 100%;
}

select,
button,
input[type=text],
input[type=email],
input[type=password],
textarea {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}

strong,
b {
  font-weight: 900;
}

/*1199, 1366*/
.container {
  max-width: 1250px;
  margin: 0 auto;
}

@media (max-width: 1250px) {
  .container {
    max-width: 1193px;
  }
}
@media (max-width: 1140px) {
  .container {
    max-width: 992px;
  }
}
@media (max-width: 1140px) {
  .container {
    max-width: 992px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  padding-bottom: 10px;
  background-color: #fff;
  z-index: 10;
  transition: box-shadow 0.3s ease;
}
header.with-shadow {
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 992px) {
  header {
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
  }
}
header .con {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
header .con .logos {
  display: flex;
  align-items: flex-end;
  -moz-column-gap: 30px;
       column-gap: 30px;
  padding-bottom: 5px;
}
header .con .logos .logo a {
  display: block;
}
header .con .logos .logo a img {
  display: block;
  max-width: 100%;
  max-height: 80px;
}
@media (max-width: 1140px) {
  header .con .logos .slogan {
    display: none;
  }
}
header .con .logos .slogan img {
  display: block;
  max-width: 100%;
}
header .con .header-nav {
  flex: 1;
}
header .con .header-nav .hn-top {
  display: flex;
  align-items: center;
  padding: 8px 0;
  gap: 18px;
  justify-content: flex-end;
}
header .con .header-nav .hn-top .phone-block {
  display: flex;
  align-items: center;
}
header .con .header-nav .hn-top .phone-block img {
  display: block;
  margin-right: 8px;
}
header .con .header-nav .hn-top .phone-block .phone {
  font-weight: 700;
  white-space: nowrap;
}
header .con .header-nav .hn-top .logo1 img {
  display: block;
}
header .con .header-nav .hn-top .logo2 img {
  display: block;
}
header .con .header-nav .hn-top .text-block {
  font-size: 13px;
  color: #000;
}
header .con .header-nav .hn-top .text-block strong {
  font-weight: 700;
}
header .con .header-nav .hn-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .con .header-nav .hn-bottom nav {
  border: 1px solid #e3e3e3;
  height: 44px;
  display: flex;
  align-items: center;
}
header .con .header-nav .hn-bottom nav ul {
  display: flex;
  list-style: none;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding-left: 10px;
  padding-right: 10px;
  margin: 0;
}
@media (max-width: 1140px) {
  header .con .header-nav .hn-bottom nav ul {
    -moz-column-gap: 2px;
         column-gap: 2px;
    padding-left: 2px;
    padding-right: 2px;
  }
}
header .con .header-nav .hn-bottom nav ul li a {
  font-weight: 600;
  font-size: 15px;
  padding: 9px 0px;
  color: #121212;
  display: inline-block;
  position: relative;
  transition: color 0.25s ease, transform 0.15s ease;
  will-change: transform;
}
@media (max-width: 1250px) {
  header .con .header-nav .hn-bottom nav ul li a {
    font-size: 13px;
  }
}
header .con .header-nav .hn-bottom nav ul li a:hover {
  color: #000;
}
header .con .header-nav .hn-bottom nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 4px;
  width: 0;
  background: #c8172a;
  transition: width 0.25s ease;
}
header .con .header-nav .hn-bottom nav ul li a:hover::after {
  width: 100%;
}
header .con .header-nav .hn-bottom .header-search {
  display: flex;
  align-items: center;
  height: 44px;
}
header .con .header-nav .hn-bottom .header-search button.search-btn {
  border: 1px solid #e3e3e3;
  border-left: none;
  background: transparent;
  padding: 0 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
header .con .header-nav .hn-bottom .header-search button.search-btn img {
  display: block;
  height: 20px;
  width: 20px;
  max-width: initial;
}
header .con .header-nav .hn-bottom .header-search button.lang-btn {
  border: 1px solid #e3e3e3;
  border-left: none;
  background: #fff;
  padding: 0 14px;
  font-size: 14px;
  color: #333;
  height: 100%;
  white-space: nowrap;
  cursor: pointer;
  text-align: left;
  border-radius: 2px;
  display: flex;
  align-items: center;
}
header .con .header-nav .mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 15px;
}
header .con .header-nav .mobile-menu-btn span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #121212;
  border-radius: 3px;
  transition: all 0.3s ease;
}
header.menu-open .header-nav .mobile-menu-btn span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
header.menu-open .header-nav .mobile-menu-btn span:nth-child(2) {
  opacity: 0;
}
header.menu-open .header-nav .mobile-menu-btn span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
@media (max-width: 992px) {
  header {
    padding-bottom: 0px;
  }
  header .con {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    padding-bottom: 15px;
  }
  header .con .logos {
    padding-bottom: 0;
  }
  header .con .logos .slogan {
    display: block;
  }
  header .con .header-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  header .con .header-nav .hn-top {
    display: none;
  }
  header .con .header-nav .hn-bottom {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
    border-top: 2px solid #111111;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 30px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 9;
  }
  header .con .header-nav .hn-bottom nav {
    border: none;
    height: auto;
    width: 100%;
  }
  header .con .header-nav .hn-bottom nav ul {
    flex-direction: column;
    row-gap: 10px;
    padding: 0;
  }
  header .con .header-nav .hn-bottom nav ul li {
    width: 100%;
  }
  header .con .header-nav .hn-bottom nav ul li a {
    font-size: 18px;
    display: block;
    padding: 10px 0;
  }
  header .con .header-nav .hn-bottom nav ul li a::after {
    display: none;
  }
  header .con .header-nav .hn-bottom .header-search {
    width: 100%;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f1f1f1;
    height: auto;
    justify-content: center;
  }
  header .con .header-nav .hn-bottom .header-search button.search-btn,
  header .con .header-nav .hn-bottom .header-search button.lang-btn {
    border-left: 1px solid #e3e3e3;
    height: 44px;
  }
  header .con .header-nav .mobile-menu-btn {
    display: flex;
  }
  header.menu-open .con .header-nav .hn-bottom {
    transform: translateX(0);
  }
}

/* Loading overlay */
.site-loading {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.site-loading .site-loading__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
}
.site-loading .site-loading__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-loading .site-loading__inner .site-loading__spinner {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-loading .site-loading__inner .site-loading__spinner .spinner {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  /* fallback border spinner for older browsers */
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  -webkit-animation: spin 1s linear infinite;
  will-change: transform;
}
.site-loading .site-loading__inner .site-loading__spinner .spinner-svg {
  display: block;
  width: 48px;
  height: 48px;
  transform-origin: 50% 50%;
  animation: spin 1s linear infinite;
  -webkit-animation: spin 1s linear infinite;
}
.site-loading.active {
  display: flex;
}
.site-loading[aria-hidden=true] {
  pointer-events: none;
}
.site-loading[aria-hidden=false] {
  pointer-events: auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.bpage header {
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
}

.home-slider {
  margin-top: 100px;
  position: relative;
  overflow: hidden;
  background: #fff;
  width: 100%;
  border-bottom: 5px solid #c8172a;
}
.home-slider.home-slider-mobile {
  min-height: 220px;
}
@media (max-width: 992px) {
  .home-slider {
    margin-top: 60px;
  }
}
.home-slider .swiper-wrapper {
  align-items: center;
}
.home-slider img {
  width: 100%;
  height: initial;
  display: block;
}
@media (max-width: 992px) {
  .home-slider img {
    height: 240px;
  }
}
.home-slider .swiper-pagination {
  position: absolute;
  bottom: 24px;
  left: calc((100% - 1250px) / 2);
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  width: -moz-max-content;
  width: max-content;
  z-index: 5;
}
.home-slider .swiper-pagination .swiper-pagination-bullet {
  width: 74px;
  height: 6px;
  border-radius: 2px;
  background: #ccc;
  opacity: 1;
  transition: background 0.3s ease;
}
.home-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #c8172a;
}
.home-slider .swiper-button-next,
.home-slider .swiper-button-prev {
  display: none;
}
@media (max-width: 992px) {
  .home-slider .swiper-pagination .swiper-pagination-bullet {
    width: 28px;
    height: 4px;
    border-radius: 2px;
  }
}

@media (max-width: 1250px) {
  .home-slider .swiper-pagination {
    left: 20px;
  }
}
@media (max-width: 767px) {
  .home-slider .swiper-pagination {
    bottom: 18px;
    left: 16px;
  }
}
.home-products {
  padding: 80px 0 40px 0;
}
.home-products .phead {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
  font-weight: 800;
  color: #000;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
}
.home-products .phead::before {
  content: attr(data-text);
  position: absolute;
  font-size: 58px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px #eef2f7;
  z-index: -1;
  white-space: nowrap;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.home-products .plist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 50px;
  justify-content: center;
}
.home-products .plist .pitem {
  position: relative;
  flex: 0 0 calc(12.5% - 9px);
  height: 203px;
  border: 1px solid #d1d1d1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
}
.home-products .plist .pitem .pbg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 1;
  background-color: #be1e2d;
  transition: opacity 0.4s ease;
}
.home-products .plist .pitem .pbg::after {
  /*content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(36, 66, 110, 0.85);*/
}
.home-products .plist .pitem .pcontent {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px 10px 25px 10px;
}
.home-products .plist .pitem .picon {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-products .plist .pitem .picon img {
  height: 60px;
  width: auto;
  transition: filter 0.3s ease;
}
.home-products .plist .pitem .ptitle {
  text-align: center;
  color: #333;
  transition: color 0.3s ease;
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
  white-space: nowrap;
}
.home-products .plist .pitem .ptitle span {
  display: block;
  line-height: 1.1;
}
.home-products .plist .pitem .ptitle .first-word {
  font-weight: 800;
  font-size: 17px;
}
.home-products .plist .pitem .ptitle .rest {
  font-weight: 500;
  font-size: 17px;
}
.home-products .plist .pitem .pbar {
  width: 80%;
  height: 4px;
  background: #be1e2d;
  transition: background 0.3s ease;
}
.home-products .plist .pitem:hover {
  border-color: #24426e;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.home-products .plist .pitem:hover .pbg {
  opacity: 1;
}
.home-products .plist .pitem:hover .picon img {
  filter: brightness(0) invert(1);
}
.home-products .plist .pitem:hover .ptitle {
  color: #fff;
}
.home-products .plist .pitem:hover .pbar {
  background: #fff;
}

@media (max-width: 1200px) {
  .home-products .plist .pitem {
    max-width: calc(25% - 15px);
    min-width: calc(25% - 15px);
  }
}
@media (max-width: 992px) {
  .home-products {
    padding: 60px 0 30px 0;
  }
  .home-products .plist {
    gap: 10px;
  }
  .home-products .plist .pitem {
    max-width: calc(33.33% - 10px);
    min-width: calc(33.33% - 10px);
  }
  .home-products .plist .pitem .ptitle .first-word {
    font-size: 17px;
  }
  .home-products .plist .pitem .ptitle .rest {
    font-size: 15px;
  }
  .home-products .phead {
    font-size: 28px;
  }
  .home-products .phead::before {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .home-products {
    padding: 40px 0 20px 0;
  }
  .home-products .plist .pitem {
    max-width: calc(50% - 10px);
    min-width: calc(50% - 10px);
  }
  .home-products .phead {
    font-size: 24px;
  }
  .home-products .phead::before {
    font-size: 44px;
  }
}
.home-info {
  padding: 0px 0;
  overflow: hidden;
  background: #fff;
}
.home-info .container {
  max-width: 1250px;
}
.home-info .info-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 480px;
}
.home-info .info-content {
  flex: 0 0 700px;
  z-index: 5;
  position: relative;
}
.home-info .info-title {
  font-size: 33px;
  color: #000;
  font-weight: 400;
  margin-bottom: 25px;
}
.home-info .info-title strong {
  display: block;
  font-weight: 900;
  font-size: 49px;
}
.home-info .info-text {
  font-size: 17px;
  color: #b1b1b1;
  line-height: 1.3;
  max-width: 500px;
  margin-bottom: 60px;
}
.home-info .info-row {
  display: flex;
  align-items: flex-end;
  gap: 23px;
}
.home-info .info-stats {
  display: flex;
  align-items: center;
}
.home-info .info-stats .stat-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 25px;
}
.home-info .info-stats .stat-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1.5px;
  height: 100%;
  background: linear-gradient(to top, rgba(36, 66, 110, 0.8) 0%, rgba(36, 66, 110, 0) 100%);
}
.home-info .info-stats .stat-item:last-child::after {
  display: none;
}
.home-info .info-stats .stat-item:first-child {
  padding-left: 0;
}
.home-info .info-stats .stat-item .icon {
  height: 50px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.home-info .info-stats .stat-item .icon img {
  height: 100%;
  width: auto;
}
.home-info .info-stats .stat-item .text span {
  display: block;
  line-height: 1.3;
}
.home-info .info-stats .stat-item .text .val {
  font-weight: 900;
  color: #909090;
  font-size: 14px;
  white-space: nowrap;
}
.home-info .info-stats .stat-item .text .lab {
  font-weight: 500;
  color: #909090;
  font-size: 15px;
  white-space: nowrap;
}
.home-info .info-badge img {
  width: auto;
}
.home-info .info-map {
  position: absolute;
  top: 63%;
  right: -158px;
  transform: translateY(-50%);
  width: 60%;
  z-index: 1;
  pointer-events: none;
}
.home-info .info-map img {
  height: auto;
}
.home-info .info-map .map-pulse {
  position: absolute;
  top: 50%;
  left: 61.05%;
  width: 20px;
  height: 20px;
  background: #be1e2d;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.home-info .info-map .map-pulse::before, .home-info .info-map .map-pulse::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: mapPulse 2.5s infinite;
  opacity: 0;
}
.home-info .info-map .map-pulse::after {
  animation-delay: 1.25s;
}

@keyframes mapPulse {
  0% {
    width: 20px;
    height: 20px;
    opacity: 0.6;
  }
  100% {
    width: 80px;
    height: 80px;
    opacity: 0;
  }
}
@media (max-width: 1100px) {
  .home-info .info-content {
    flex: 0 0 100%;
  }
  .home-info .info-map {
    opacity: 0.2;
    right: -100px;
  }
}
@media (max-width: 992px) {
  .home-info {
    padding: 80px 0;
  }
  .home-info .info-wrapper {
    flex-wrap: wrap;
  }
  .home-info .info-content {
    flex: 0 0 100%;
    text-align: center;
  }
  .home-info .info-title {
    font-size: 34px;
  }
  .home-info .info-title strong {
    font-size: 46px;
  }
  .home-info .info-text {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .home-info .info-row {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .home-info .info-stats {
    justify-content: center;
  }
  .home-info .info-stats .stat-item {
    padding: 0 20px;
  }
  .home-info .info-map {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    opacity: 1;
    margin-top: 60px;
    pointer-events: auto;
  }
  .home-info .info-map .map-pulse {
    left: 61.7%;
  }
}
@media (max-width: 767px) {
  .home-info {
    padding: 60px 0;
  }
  .home-info .info-wrapper {
    min-height: auto;
  }
  .home-info .info-title {
    font-size: 26px;
  }
  .home-info .info-title strong {
    font-size: 32px;
  }
  .home-info .info-text {
    font-size: 15px;
  }
  .home-info .info-stats {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .home-info .info-stats .stat-item {
    padding: 20px 0;
    border-right: none;
    border-bottom: 1px solid #eee;
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .home-info .info-stats .stat-item::after {
    display: none;
  }
  .home-info .info-stats .stat-item:last-child {
    border-bottom: none;
  }
  .home-info .info-stats .stat-item .text .val {
    font-size: 16px;
  }
  .home-info .info-stats .stat-item .text .lab {
    font-size: 14px;
  }
  .home-info .info-badge img {
    height: 70px;
  }
  .home-info .info-map {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-top: 40px;
  }
}
.home-pages {
  padding: 0px 0;
  padding-bottom: 50px;
}
.home-pages .pages-list {
  display: flex;
  gap: 30px;
}
.home-pages .pages-list .page-item {
  flex: 1;
  position: relative;
  padding-top: 20px;
  text-decoration: none;
  display: block;
}
.home-pages .pages-list .page-item:first-child .page-decor-box {
  top: 0;
  left: -15px;
}
.home-pages .pages-list .page-item:last-child .page-decor-box {
  top: 0;
  right: -15px;
}
.home-pages .pages-list .page-item:last-child .page-content {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.home-pages .pages-list .page-item .page-decor-box {
  position: absolute;
  width: 100px;
  height: 100px;
  background: #f0f0f0;
  z-index: 1;
}
.home-pages .pages-list .page-item .page-inner {
  position: relative;
  z-index: 2;
  overflow: hidden;
  aspect-ratio: 16/9;
  display: flex;
  align-items: flex-end;
}
.home-pages .pages-list .page-item .page-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
  transition: opacity 0.4s ease;
}
.home-pages .pages-list .page-item .page-inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.6s ease;
}
.home-pages .pages-list .page-item:hover .page-inner::after {
  opacity: 0;
}
.home-pages .pages-list .page-item:hover .page-inner img {
  transform: scale(1.1);
}
.home-pages .pages-list .page-item .page-content {
  position: relative;
  z-index: 3;
  padding: 40px;
  padding-bottom: 30px;
  width: 100%;
}
.home-pages .pages-list .page-item .page-title {
  color: #fff;
  font-size: 27px;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
  line-height: 1;
}
.home-pages .pages-list .page-item .page-bar {
  width: 120px;
  height: 6px;
  background: #be1e2d;
}
.home-pages .pages-list .page-item .dots-pattern {
  position: absolute;
  bottom: 25px;
  width: 60px;
  height: 60px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3333333333) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  z-index: 1;
}
.home-pages .pages-list .page-item:nth-child(1) .dots-pattern {
  left: 20px;
}
.home-pages .pages-list .page-item:nth-child(2) .dots-pattern {
  right: 20px;
}

@media (max-width: 992px) {
  .home-pages {
    padding: 60px 0;
  }
  .home-pages .pages-list {
    flex-direction: column;
    gap: 40px;
  }
  .home-pages .pages-list .page-item .page-title {
    font-size: 24px;
  }
  .home-pages .pages-list .page-item .page-decor-box {
    display: none;
  }
}
.home-brands {
  padding: 0px 0;
  background: #fff;
  padding-bottom: 20px;
}
.home-brands .brands-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.home-brands .brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #d1d1d1;
  padding: 30px;
  transition: all 0.3s ease;
}
.home-brands .brand-item img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.home-brands .brand-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-color: #24426e;
}
.home-brands .brands-top {
  width: 100%;
  display: flex;
  justify-content: center;
}
.home-brands .brands-top .brand-item {
  width: 234px;
  height: 140px;
}
.home-brands .brands-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  width: 100%;
}
.home-brands .brands-list .brand-item {
  height: 140px;
}

@media (max-width: 1200px) {
  .home-brands .brands-list {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 992px) {
  .home-brands {
    padding: 40px 0;
  }
  .home-brands .brands-top .brand-item {
    width: 100%;
    height: 150px;
  }
  .home-brands .brands-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .home-brands .brands-list .brand-item {
    height: 100px;
    padding: 15px;
  }
}
.footer-top {
  background-image: url("../img/footer-top-bg.jpg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  width: 100%;
  min-height: 120px;
  display: flex;
  align-items: center;
  border-top: 5px solid #f8f8f8;
  border-bottom: 5px solid #f8f8f8;
}
@media (max-width: 992px) {
  .footer-top {
    background-size: cover;
  }
}
.footer-top .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}
.footer-top .footer-slogan img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .footer-top {
    background-position: center;
  }
  .footer-top .container {
    justify-content: center;
  }
}
footer {
  position: relative;
  padding: 31px 0 13px;
  background-color: #fff;
  overflow: hidden;
  background-image: url("../img/footer-bg.jpg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}
footer .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
footer .footer-main {
  display: flex;
  justify-content: space-between;
}
footer .footer-left {
  width: 38%;
  padding-right: 40px;
}
footer .footer-left .footer-logo {
  display: block;
  margin-bottom: 40px;
}
footer .footer-left .footer-logo img {
  max-width: 280px;
  height: auto;
}
footer .footer-left .contact-info .c-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}
footer .footer-left .contact-info .c-item .icon {
  width: 32px;
  margin-right: 20px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}
footer .footer-left .contact-info .c-item .icon img {
  max-width: 100%;
  height: auto;
}
footer .footer-left .contact-info .c-item .text {
  font-size: 15px;
  line-height: 1.2;
  color: #272727;
  font-weight: 500;
}
footer .footer-left .contact-info .c-item .text strong {
  color: #c8172a;
  font-weight: 700;
}
footer .footer-left .contact-info .c-item.phone-row {
  align-items: center;
  margin-top: 30px;
}
footer .footer-left .contact-info .c-item.phone-row .icon {
  width: 40px;
}
footer .footer-left .contact-info .c-item.phone-row .text {
  display: flex;
  flex-direction: column;
}
footer .footer-left .contact-info .c-item.phone-row .text .label {
  font-size: 14px;
  color: #000;
  text-transform: uppercase;
  font-weight: 400;
}
footer .footer-left .contact-info .c-item.phone-row .text .label strong {
  font-weight: 900;
  color: #000;
}
footer .footer-left .contact-info .c-item.phone-row .text .phone {
  font-size: 32px;
  font-weight: 800;
  color: #000;
  line-height: 1.1;
  text-decoration: none;
  margin-top: 5px;
}
footer .footer-divider {
  width: 1px;
  background-color: #ccc;
  margin: 0 40px;
}
footer .footer-right {
  flex: 1;
  display: flex;
  justify-content: space-between;
}
footer .footer-right .f-col h3 {
  font-size: 22px;
  font-weight: 800;
  color: #222;
  margin-bottom: 13px;
}
footer .footer-right .f-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-right .f-col ul li {
  margin-bottom: 9px;
}
footer .footer-right .f-col ul li a {
  position: relative;
  display: inline-block;
  padding: 4px 10px;
  text-decoration: none;
  color: #272727;
  font-size: 16px;
  transition: color 0.25s ease;
  font-weight: 500;
  margin-left: -10px;
}
footer .footer-right .f-col ul li a::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#c8172a, #c8172a), linear-gradient(#c8172a, #c8172a);
  background-position: left top, left bottom;
  background-repeat: no-repeat, no-repeat;
  background-size: 0% 2px, 0% 2px;
  transition: background-size 0.25s ease;
  pointer-events: none;
}
footer .footer-right .f-col ul li a::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#c8172a, #c8172a), linear-gradient(#c8172a, #c8172a);
  background-position: left top, right top;
  background-repeat: no-repeat, no-repeat;
  background-size: 2px 0%, 2px 0%;
  transition: background-size 0.25s ease 0.05s;
  pointer-events: none;
}
footer .footer-right .f-col ul li a:hover {
  color: #002d5c;
}
footer .footer-right .f-col ul li a:hover::before {
  background-size: 100% 2px, 100% 2px;
}
footer .footer-right .f-col ul li a:hover::after {
  background-size: 2px 100%, 2px 100%;
}
footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}
footer .footer-bottom .fb-left {
  display: flex;
  align-items: center;
}
footer .footer-bottom .fb-left img {
  margin-right: 20px;
  width: auto;
}
footer .footer-bottom .fb-left span {
  font-size: 13px;
  color: #000;
}
footer .footer-bottom .fb-left span strong {
  font-weight: 800;
}
footer .footer-bottom .fb-right a {
  font-size: 14px;
  font-weight: 700;
  color: #000;
}

@media (max-width: 1200px) {
  footer .footer-left {
    width: 45%;
    padding-right: 20px;
  }
  footer .footer-divider {
    margin: 0 20px;
  }
}
@media (max-width: 991px) {
  footer {
    padding: 50px 0 20px;
  }
  footer .footer-main {
    flex-direction: column;
  }
  footer .footer-left {
    width: 100%;
    margin-bottom: 40px;
    padding-right: 0;
  }
  footer .footer-divider {
    display: none;
  }
  footer .footer-right {
    padding-left: 0;
    flex-wrap: wrap;
  }
  footer .footer-right .f-col {
    width: 50%;
    margin-bottom: 30px;
  }
  footer .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  footer .footer-bottom .fb-left {
    flex-direction: column;
    margin-bottom: 15px;
  }
  footer .footer-bottom .fb-left img {
    margin: 0 0 15px 0;
  }
}
@media (max-width: 576px) {
  footer .footer-right .f-col {
    width: 100%;
  }
}
.page-header {
  background-image: url("../img/page-top-01.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 33px 0 33px 0;
  margin-top: 100px;
  border-bottom: 5px solid #f9f9f9;
}
@media (max-width: 992px) {
  .page-header {
    margin-top: 60px;
    padding: 80px 0 40px 0;
  }
}
.page-header .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-header .page-title {
  color: #000;
  font-size: 34px;
  font-weight: 900;
  margin: 0;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .page-header .page-title {
    font-size: 32px;
  }
}
.page-header .breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  color: #a5a5a5;
  font-size: 17px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .page-header .breadcrumb {
    font-size: 14px;
    gap: 8px;
  }
}
.page-header .breadcrumb a {
  color: #a5a5a5;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 400;
}
.page-header .breadcrumb a:hover {
  color: #24426e;
}
.page-header .breadcrumb .divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background-color: #a5a5a5;
  border-radius: 50%;
  color: #fff;
  font-size: 8px;
}
.page-header .breadcrumb .divider svg {
  width: 9px;
  height: 9px;
}
.page-header .breadcrumb .current {
  color: #a5a5a5;
}

.jenerator-list {
  padding: 10px 0;
  padding-bottom: 40px;
  background-color: #fff;
}
.jenerator-list .jlist {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.jenerator-list .jlist .jitem {
  position: relative;
  flex: 0 0 calc(25% - 22.5px);
  height: 380px;
  border: 3px solid #efefef;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: #fff;
}
@media (max-width: 1200px) {
  .jenerator-list .jlist .jitem {
    flex: 0 0 calc(33.33% - 20px);
  }
}
@media (max-width: 992px) {
  .jenerator-list .jlist .jitem {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
    height: initial;
    margin-bottom: 10px;
  }
}
.jenerator-list .jlist .jitem .jbg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 65%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  filter: grayscale(100%);
  transition: opacity 0.5s ease, transform 0.8s ease, filter 0.5s ease;
  z-index: 1;
}
.jenerator-list .jlist .jitem .jbg::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, #fff 100%);
}
.jenerator-list .jlist .jitem .jcontent {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 30px;
}
.jenerator-list .jlist .jitem .jicon {
  margin-bottom: 8px;
  transition: transform 0.4s ease;
  height: 80px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.jenerator-list .jlist .jitem .jicon img {
  height: 65px;
  width: auto;
  display: block;
}
@media (max-width: 992px) {
  .jenerator-list .jlist .jitem .jicon img {
    height: 60px;
  }
}
.jenerator-list .jlist .jitem .jtitle {
  text-align: center;
  color: #121212;
  font-weight: 800;
  font-size: 19px;
  margin-bottom: 20px;
  transition: color 0.3s ease;
  line-height: 1;
  height: 30px;
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .jenerator-list .jlist .jitem .jtitle {
    font-size: 18px;
  }
}
.jenerator-list .jlist .jitem .jbar {
  width: 100px;
  height: 5px;
  background: #be1e2d;
  transition: width 0.4s ease, transform 0.4s ease;
}
.jenerator-list .jlist .jitem:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: #e0e0e0;
}
.jenerator-list .jlist .jitem:hover .jbg {
  opacity: 1;
  transform: scale(1.05);
  filter: grayscale(0%);
}
.jenerator-list .jlist .jitem:hover .jtitle {
  color: #be1e2d;
}
.jenerator-list .jlist .jitem:hover .jicon {
  transform: translateY(-5px);
}
.jenerator-list .jlist .jitem:hover .jbar {
  width: 144px;
}

.category-header {
  background-color: #24426e;
  padding: 47px 0;
  padding-bottom: 44px;
  margin-top: 100px;
}
@media (max-width: 992px) {
  .category-header {
    margin-top: 60px;
    padding: 60px 0;
  }
}
.category-header .ch-content {
  max-width: 800px;
  color: #fff;
}
.category-header .ch-title {
  font-size: 37px;
  font-weight: 900;
  margin: 0 0 25px 0;
  line-height: 1.1;
}
@media (max-width: 768px) {
  .category-header .ch-title {
    font-size: 36px;
  }
}
.category-header .ch-text {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 35px;
  max-width: 600px;
}
@media (max-width: 768px) {
  .category-header .ch-text {
    font-size: 14px;
  }
}
.category-header .ch-bar {
  width: 144px;
  height: 6px;
  background-color: #be1e2d;
}

.category-body {
  padding: 35px 0;
  background-color: #fff;
}
.category-body .category-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .category-body .category-wrapper {
    flex-direction: column;
  }
}
.category-body .category-sidebar {
  flex: 0 0 260px;
  width: 260px;
  border-right: 5px solid #f9f9f9;
}
@media (max-width: 992px) {
  .category-body .category-sidebar {
    width: 100%;
    flex: 0 0 100%;
  }
}
.category-body .category-sidebar .filter-group {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 5px solid #f9f9f9;
}
.category-body .category-sidebar .filter-group:last-child {
  border-bottom: none;
}
.category-body .category-sidebar .filter-group .filter-title {
  font-size: 17px;
  font-weight: 800;
  color: #24426e;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.category-body .category-sidebar .filter-group .filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.category-body .category-sidebar .filter-group .filter-list li {
  margin-bottom: 7px;
}
.category-body .category-sidebar .filter-group .filter-list li:last-child {
  margin-bottom: 0;
}
.category-body .category-sidebar .custom-radio {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: #666;
  transition: color 0.3s ease;
}
.category-body .category-sidebar .custom-radio input {
  display: none;
}
.category-body .category-sidebar .custom-radio .radio-mark {
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 50%;
  display: block;
  position: relative;
  transition: border-color 0.3s ease;
}
.category-body .category-sidebar .custom-radio .radio-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: #be1e2d;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.category-body .category-sidebar .custom-radio input:checked + .radio-mark {
  border-color: #be1e2d;
}
.category-body .category-sidebar .custom-radio input:checked + .radio-mark::after {
  opacity: 1;
}
.category-body .category-sidebar .custom-radio input:checked ~ span:last-child {
  color: #be1e2d;
  font-weight: 700;
}
.category-body .category-sidebar .custom-radio:hover {
  color: #24426e;
}
.category-body .category-sidebar .custom-radio:hover .radio-mark {
  border-color: #24426e;
}
.category-body .category-sidebar .filter-btn {
  width: 100%;
  height: 54px;
  background-color: #24426e;
  color: #fff;
  border: none;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}
.category-body .category-sidebar .filter-btn:hover {
  background-color: #be1e2d;
}
.category-body .category-content {
  flex: 1;
  width: 100%;
}
.category-body .category-content .product-grid {
  border: 1px solid #e3e3e3;
  background-color: #fff;
}
.category-body .category-content .product-grid .pg-header {
  display: flex;
  background-color: #24426e;
  color: #fff;
}
@media (max-width: 768px) {
  .category-body .category-content .product-grid .pg-header {
    display: none;
  }
}
.category-body .category-content .product-grid .pg-header .pg-col {
  padding: 18px 10px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}
.category-body .category-content .product-grid .pg-header .pg-col:last-child {
  border-right: none;
}
.category-body .category-content .product-grid .pg-row {
  display: flex;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #e3e3e3;
  transition: background-color 0.3s ease;
}
.category-body .category-content .product-grid .pg-row:last-child {
  border-bottom: none;
}
.category-body .category-content .product-grid .pg-row:nth-child(even) {
  background-color: #fcfcfc;
}
.category-body .category-content .product-grid .pg-row:hover {
  background-color: #f5f8ff;
}
@media (max-width: 768px) {
  .category-body .category-content .product-grid .pg-row {
    flex-direction: column;
    padding: 15px;
    gap: 8px;
  }
}
.category-body .category-content .product-grid .pg-col {
  flex: 1;
  padding: 15px 10px;
  text-align: center;
  font-size: 14px;
  color: #333;
  border-right: 1px solid #e3e3e3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-body .category-content .product-grid .pg-col:last-child {
  border-right: none;
}
@media (max-width: 768px) {
  .category-body .category-content .product-grid .pg-col {
    border: none;
    padding: 0;
    justify-content: space-between;
    text-align: right;
    width: 100%;
  }
  .category-body .category-content .product-grid .pg-col::before {
    content: attr(data-label);
    font-weight: 700;
    color: #24426e;
    margin-right: 10px;
  }
}
.category-body .category-content .product-grid .pg-col.model-name {
  font-weight: 800;
  color: #24426e;
}
.category-body .category-content .product-grid .pg-col.motor-cell {
  gap: 8px;
}
.category-body .category-content .product-grid .pg-col.motor-cell img {
  height: 20px;
  width: auto;
}
.category-body .category-content .product-grid .no-products {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  text-align: center;
  color: #666;
}
.category-body .category-content .product-grid .no-products svg {
  margin-bottom: 20px;
  opacity: 0.7;
}
.category-body .category-content .product-grid .no-products h3 {
  font-size: 24px;
  font-weight: 700;
  color: #24426e;
  margin-bottom: 10px;
}
.category-body .category-content .product-grid .no-products p {
  font-size: 16px;
  line-height: 1.5;
  max-width: 400px;
}

.page-product {
  padding: 80px 0;
  padding-top: 100px;
}
.page-product .product-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  align-items: stretch;
}
@media (max-width: 992px) {
  .page-product .product-grid {
    grid-template-columns: 1fr;
  }
}
.page-product .product-left {
  padding-right: 13px;
  padding-top: 80px;
}
@media (max-width: 992px) {
  .page-product .product-left {
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.page-product .product-left .product-main-img {
  background: #fff;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.page-product .product-left .product-main-img img {
  max-width: 100%;
  height: auto;
}
.page-product .product-left .product-specs-bar {
  background: #f7f7f7;
  display: flex;
  justify-content: space-between;
  padding: 25px 30px;
}
@media (max-width: 576px) {
  .page-product .product-left .product-specs-bar {
    flex-direction: column;
    gap: 20px;
  }
}
.page-product .product-left .product-specs-bar .spec-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.page-product .product-left .product-specs-bar .spec-item img {
  width: 45px;
  height: auto;
}
.page-product .product-left .product-specs-bar .spec-item .text {
  display: flex;
  flex-direction: column;
}
.page-product .product-left .product-specs-bar .spec-item .text span {
  font-size: 13px;
  color: #7a7a7a;
  font-weight: 500;
}
.page-product .product-left .product-specs-bar .spec-item .text strong {
  font-size: 16px;
  color: #222;
  font-weight: 800;
  line-height: 1.2;
}
.page-product .product-right {
  padding: 20px;
  padding-top: 80px;
  background: #f9f9f9;
  position: relative;
  display: flex;
  flex-direction: column;
}
.page-product .product-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: #f9f9f9;
  z-index: -1;
}
@media (max-width: 992px) {
  .page-product .product-right {
    padding: 40px 20px;
  }
  .page-product .product-right::before {
    width: 100%;
    left: -20px;
    right: -20px;
    width: calc(100% + 40px);
  }
}
.page-product .product-right .product-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 5px;
  line-height: 1.1;
}
@media (max-width: 576px) {
  .page-product .product-right .product-title {
    font-size: 24px;
  }
}
.page-product .product-right .product-subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 30px;
}
.page-product .product-right .product-content {
  font-size: 16px;
  line-height: 1.6;
  color: #888;
  margin-bottom: 50px;
  max-width: 550px;
}
.page-product .product-right .product-pdfs {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
@media (max-width: 992px) {
  .page-product .product-right .product-pdfs {
    grid-template-columns: 1fr;
  }
}
.page-product .product-right .product-pdfs .pdf-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  border: 1px solid #f1f1f1;
  padding: 12px 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}
.page-product .product-right .product-pdfs .pdf-item:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-color: #e0e0e0;
  transform: translateY(-2px);
}
.page-product .product-right .product-pdfs .pdf-item .pdf-icon img {
  width: 38px;
  height: auto;
}
.page-product .product-right .product-pdfs .pdf-item .pdf-text {
  display: flex;
  flex-direction: column;
}
.page-product .product-right .product-pdfs .pdf-item .pdf-text strong {
  font-size: 17px;
  color: #222;
  font-weight: 800;
  line-height: 1.2;
}
.page-product .product-right .product-pdfs .pdf-item .pdf-text span {
  font-size: 14px;
  color: #7a7a7a;
  font-weight: 500;
}
.page-product .product-tabs {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .page-product .product-tabs {
    margin-top: 40px;
  }
}
.page-product .product-tabs .tabs-header {
  display: flex;
  background: #2c4563;
  border-radius: 4px 4px 0 0;
  gap: 0;
  margin-bottom: 15px;
  width: 100%;
}
.page-product .product-tabs .tabs-header .tab-button {
  padding: 18px 25px;
  border: none;
  background: none;
  color: #8fa3bf;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.page-product .product-tabs .tabs-header .tab-button:first-child {
  border-radius: 4px 0 0 0;
}
.page-product .product-tabs .tabs-header .tab-button:hover:not(.active) {
  background: #354d6b;
  color: #c5d3e3;
}
.page-product .product-tabs .tabs-header .tab-button.active {
  background: #263a52;
  color: #ffffff;
}
@media (max-width: 576px) {
  .page-product .product-tabs .tabs-header .tab-button {
    padding: 14px 15px;
    font-size: 11px;
  }
}
.page-product .product-tabs .tabs-content {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-top: none;
  border-radius: 0 0 0 4px;
  overflow: hidden;
  width: 100%;
}
.page-product .product-tabs .tabs-content .tab-pane {
  display: none;
}
.page-product .product-tabs .tabs-content .tab-pane.active {
  display: block;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.page-product .product-tabs .specs-table {
  width: 100%;
  border-collapse: collapse;
}
.page-product .product-tabs .specs-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
}
.page-product .product-tabs .specs-table tbody tr:first-child td {
  border-top: none;
}
.page-product .product-tabs .specs-table tbody tr:last-child {
  border-bottom: none;
}
.page-product .product-tabs .specs-table tbody tr:nth-child(even) {
  background: #efefef;
}
.page-product .product-tabs .specs-table tbody tr td {
  padding: 16px 20px;
  font-size: 15px;
  color: #555;
  border: 1px solid #b0b0b0;
}
.page-product .product-tabs .specs-table tbody tr td:first-child {
  color: #222;
  font-weight: 500;
  width: 40%;
}
.page-product .product-tabs .specs-table tbody tr td:nth-child(2) {
  color: #888;
  font-weight: 500;
  width: 20%;
  text-align: center;
}
.page-product .product-tabs .specs-table tbody tr td:last-child {
  color: #222;
  font-weight: 600;
  text-align: right;
  width: 40%;
}
.page-product .product-tabs .specs-table tbody tr:hover {
  background: #fafafa;
}
@media (max-width: 576px) {
  .page-product .product-tabs .specs-table tbody tr td {
    padding: 12px 15px;
    font-size: 13px;
  }
  .page-product .product-tabs .specs-table tbody tr td:first-child {
    width: 50%;
  }
  .page-product .product-tabs .specs-table tbody tr td:nth-child(2) {
    width: 25%;
  }
  .page-product .product-tabs .specs-table tbody tr td:last-child {
    width: 25%;
    text-align: right;
  }
}

.sayfa-container .scon {
  display: flex;
  gap: 30px;
  margin: 40px auto;
}
@media (max-width: 768px) {
  .sayfa-container .scon {
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
  }
}

.sayfa-sidebar {
  width: 250px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .sayfa-sidebar {
    width: 100%;
  }
}
.sayfa-sidebar .menu-toggle-btn {
  display: none;
  width: 100%;
  padding: 12px 16px;
  background-color: #c8172a;
  color: white;
  border: none;
  border-radius: 2px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.3s ease;
  margin-bottom: 5px;
}
.sayfa-sidebar .menu-toggle-btn:hover {
  background-color: #a01420;
}
.sayfa-sidebar .menu-toggle-btn svg {
  width: 20px;
  height: 20px;
}
.sayfa-sidebar .menu-toggle-btn .hamburger {
  display: block;
}
.sayfa-sidebar .menu-toggle-btn .close {
  display: none;
}
.sayfa-sidebar .menu-toggle-btn.active .hamburger {
  display: none;
}
.sayfa-sidebar .menu-toggle-btn.active .close {
  display: block;
}
@media (min-width: 993px) {
  .sayfa-sidebar .menu-toggle-btn {
    display: none;
  }
}

@media (max-width: 992px) {
  .sayfa-menu {
    display: none;
  }
}
.sayfa-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-right: 5px solid #f9f9f9;
}
.sayfa-menu .menu-item {
  margin: 0;
}
.sayfa-menu .menu-item a {
  position: relative;
  display: block;
  padding: 10px 0px;
  color: #717171;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.sayfa-menu .menu-item a:hover {
  color: #c8172a;
  padding-left: 7px;
}
.sayfa-menu .menu-item a::after {
  content: "";
  display: block;
  position: absolute;
  right: -5px;
  top: 0;
  bottom: 0;
  width: 5px;
  background-color: #c8172a;
  display: none;
}
.sayfa-menu .menu-item.active a {
  color: #c8172a;
  font-weight: 900;
}
.sayfa-menu .menu-item.active a::after {
  display: block;
}

.sayfa-content {
  flex: 1;
  min-width: 0;
}

.content-section {
  margin-bottom: 50px;
  font-size: 17px;
  line-height: 1.2;
  color: #191919;
  margin-bottom: 16px;
  font-weight: 400;
}
.content-section p {
  margin-bottom: 16px;
  text-align: justify;
}
.content-section p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .sayfa-container .scon {
    flex-wrap: wrap;
  }
  .sayfa-container {
    gap: 20px;
  }
  .sayfa-sidebar {
    width: 100%;
  }
  .content-section p {
    font-size: 15px;
  }
}
.sayfa-hakkimizda {
  position: relative;
}

.sayfa-hakkimizda .scon {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  min-height: 540px;
}
@media (max-width: 1024px) {
  .sayfa-hakkimizda .scon {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .sayfa-hakkimizda .scon {
    flex-direction: column;
    margin-top: 10px;
  }
}

.sayfa-content-wrapper {
  display: flex;
  gap: 0;
  flex: 1;
}

.sayfa-hakkimizda .sayfa-content {
  width: 80%;
  min-width: 0;
}
@media (max-width: 1400px) {
  .sayfa-hakkimizda .sayfa-content {
    width: 60%;
  }
}
@media (max-width: 992px) {
  .sayfa-hakkimizda .sayfa-content {
    width: 100%;
  }
}

.sayfa-image {
  width: 20%;
  position: relative;
  overflow: visible;
}
@media (max-width: 1400px) {
  .sayfa-image {
    width: 40%;
  }
}
@media (max-width: 992px) {
  .sayfa-image {
    display: none;
  }
}
.sayfa-image img {
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 383px;
  max-width: initial;
  height: initial;
  display: block;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  -o-object-fit: cover;
  /* object-fit: cover; */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sayfa-image img:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.vizyon-misyon {
  margin-top: 20px;
}
.vizyon-misyon .vm-item {
  position: relative;
  padding-left: 140px;
  margin-bottom: 50px;
  min-height: 120px;
}
.vizyon-misyon .vm-item .vm-quote {
  position: absolute;
  left: 0;
  top: 0;
  width: 110px;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vizyon-misyon .vm-item .vm-quote img {
  width: initial;
  display: block;
}
.vizyon-misyon .vm-item .vm-body h2 {
  color: #24426e;
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 12px;
}
.vizyon-misyon .vm-item .vm-body p {
  color: #191919;
  line-height: 1.2;
  margin: 0 0 12px;
}
@media (max-width: 768px) {
  .vizyon-misyon .vm-item {
    padding-left: 90px;
  }
  .vizyon-misyon .vm-item .vm-quote {
    width: 70px;
  }
  .vizyon-misyon .vm-item .vm-body h2 {
    font-size: 28px;
  }
}

.scon-referanslarimiz {
  padding: 60px 0;
}
.scon-referanslarimiz .ref-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: stretch;
}
.scon-referanslarimiz .ref-item {
  background: #ffffff;
  border: 1px solid #eee;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.02) inset;
  transition: transform 0.18s ease;
}
.scon-referanslarimiz .ref-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.scon-referanslarimiz .ref-item img {
  max-width: 80%;
  max-height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.45;
  transition: opacity 0.18s ease, filter 0.18s ease, transform 0.18s ease;
}
.scon-referanslarimiz .ref-item:hover {
  transform: translateY(-3px);
}
.scon-referanslarimiz .ref-item:hover img {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.02);
}
@media (max-width: 1200px) {
  .scon-referanslarimiz .ref-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 900px) {
  .scon-referanslarimiz .ref-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .scon-referanslarimiz .ref-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .scon-referanslarimiz .ref-item {
    min-height: 100px;
    padding: 12px;
  }
  .scon-referanslarimiz .ref-item img {
    max-height: 60px;
  }
}

.no-ref {
  text-align: center;
  color: #666;
  padding: 30px 0;
}

.page-tarihce {
  padding-bottom: 50px;
}
.page-tarihce .tarihce-list {
  position: relative;
  padding-left: 36px;
  padding-top: 17px;
}
.page-tarihce .tarihce-list .tarihce-item {
  position: relative;
  margin-bottom: 60px;
}
.page-tarihce .tarihce-list .tarihce-item:last-child {
  margin-bottom: 0;
}
.page-tarihce .tarihce-list .tarihce-item .tarihce-year {
  position: absolute;
  left: -38px;
  top: 30px;
  width: 85px;
  height: 85px;
  background-color: #c8172a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.page-tarihce .tarihce-list .tarihce-item .tarihce-year span {
  font-weight: 800;
  font-size: 24px;
}
@media (max-width: 992px) {
  .page-tarihce .tarihce-list .tarihce-item .tarihce-year {
    top: 20px;
    width: 60px;
    height: 60px;
    left: -80px;
  }
  .page-tarihce .tarihce-list .tarihce-item .tarihce-year span {
    font-size: 16px;
  }
}
.page-tarihce .tarihce-list .tarihce-item .tarihce-content {
  position: relative;
  overflow: hidden;
  border-left: 5px solid #c8172a;
}
.page-tarihce .tarihce-list .tarihce-item .tarihce-content .tarihce-image {
  position: relative;
}
.page-tarihce .tarihce-list .tarihce-item .tarihce-content .tarihce-image:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  z-index: 1;
}
.page-tarihce .tarihce-list .tarihce-item .tarihce-content .tarihce-image img {
  width: 100%;
  display: block;
  height: 350px;
  -o-object-fit: cover;
  object-fit: cover;
}
.page-tarihce .tarihce-list .tarihce-item .tarihce-content .tarihce-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  z-index: 2;
}
@media (max-width: 992px) {
  .page-tarihce .tarihce-list .tarihce-item .tarihce-content .tarihce-text {
    padding: 20px;
  }
}
.page-tarihce .tarihce-list .tarihce-item .tarihce-content .tarihce-text h3 {
  margin: 0 0 10px 0;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}
.page-tarihce .tarihce-list .tarihce-item .tarihce-content .tarihce-text p {
  margin: 0;
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  font-weight: 400;
}
@media (max-width: 768px) {
  .page-tarihce .tarihce-list {
    padding-left: 70px;
  }
  .page-tarihce .tarihce-list:before {
    left: 30px;
  }
}

.page-temel-degerlerimiz .temel-degerler-list .temel-degerler-item {
  display: flex;
  align-items: flex-start;
  padding: 30px 0;
  border-bottom: 1px solid #f0f0f0;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.page-temel-degerlerimiz .temel-degerler-list .temel-degerler-item:last-child {
  border-bottom: none;
}
.page-temel-degerlerimiz .temel-degerler-list .temel-degerler-item .td-icon {
  flex-shrink: 0;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-temel-degerlerimiz .temel-degerler-list .temel-degerler-item .td-icon img {
  display: block;
}
.page-temel-degerlerimiz .temel-degerler-list .temel-degerler-item .td-content h3 {
  margin: 0 0 10px 0;
  font-size: 27px;
  font-weight: 800;
  color: #2b4b77; /* Görseldeki koyu lacivert tonu */
}
.page-temel-degerlerimiz .temel-degerler-list .temel-degerler-item .td-content p {
  margin: 0;
  font-size: 16px;
  color: #777;
  line-height: 1.6;
  font-weight: 500;
}
@media (max-width: 768px) {
  .page-temel-degerlerimiz .temel-degerler-list .temel-degerler-item {
    flex-direction: column;
    row-gap: 20px;
    padding: 20px 0;
  }
  .page-temel-degerlerimiz .temel-degerler-list .temel-degerler-item .td-icon {
    width: 60px;
  }
  .page-temel-degerlerimiz .temel-degerler-list .temel-degerler-item .td-content h3 {
    font-size: 24px;
  }
}

.page-yonetim-kurulu {
  padding: 30px 35px;
}
.page-yonetim-kurulu .yonetim-grid {
  display: flex;
  gap: 75px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.page-yonetim-kurulu .yonetim-card {
  flex: 1 1 240px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.page-yonetim-kurulu .yonetim-card:nth-child(2) .yonetim-image {
  top: -30px;
}
.page-yonetim-kurulu .yonetim-image {
  width: 100%;
  padding-top: 125%;
  position: relative;
  overflow: hidden;
  border-radius: 0.35rem;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
}
.page-yonetim-kurulu .yonetim-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-yonetim-kurulu .yonetim-placeholder {
  /* keep red fill when image missing */
  position: absolute;
  inset: 0;
  background: #c8102e;
}
.page-yonetim-kurulu .yonetim-meta {
  margin-top: 1.25rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-transform: none;
}
.page-yonetim-kurulu .yonetim-title {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #111;
}
.page-yonetim-kurulu .yonetim-desc {
  font-size: 0.95rem;
  color: #3a3a3a;
  line-height: 1.4;
  position: relative;
  padding-bottom: 12px;
}
.page-yonetim-kurulu .yonetim-desc::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  height: 5px;
  background: #c8102e;
  border-radius: 1px;
}
@media (max-width: 900px) {
  .page-yonetim-kurulu .yonetim-grid {
    justify-content: center;
  }
  .page-yonetim-kurulu .yonetim-card {
    flex: 1 1 300px;
  }
}

.page-politikalarimiz .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-politikalarimiz .content-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 25px 0;
  border-bottom: 10px solid #f9f9f9;
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}
.page-politikalarimiz .content-section ul li:last-child {
  border-bottom: none;
}
.page-politikalarimiz .content-section ul li::before {
  content: "";
  flex-shrink: 0;
  width: 70px;
  height: 50px;
  background-image: url("../img/vizyon_misyon_icon.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.25;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .page-politikalarimiz .content-section ul li {
    padding: 20px 0;
    font-size: 16px;
    gap: 15px;
  }
  .page-politikalarimiz .content-section ul li::before {
    width: 50px;
    height: 35px;
  }
}
.page-kurumsal-kimlik .kk-empty {
  background: #fff;
  border: 1px solid #f9f9f9;
  padding: 18px 16px;
  color: #666;
  border-radius: 4px;
}
.page-kurumsal-kimlik .kk2 {
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.page-kurumsal-kimlik .kk2-row {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 160px;
  align-items: start;
}
@media (max-width: 992px) {
  .page-kurumsal-kimlik .kk2-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.page-kurumsal-kimlik .kk2-main-card {
  position: relative;
  background: #fff;
  border: 2px solid #f9f9f9;
  border-radius: 2px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .page-kurumsal-kimlik .kk2-main-card {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.page-kurumsal-kimlik .kk2-main-thumb {
  width: 297px;
  height: 420px;
  background: #ffffff;
  padding: 25px;
}
@media (max-width: 992px) {
  .page-kurumsal-kimlik .kk2-main-thumb {
    height: 420px;
  }
}
@media (max-width: 600px) {
  .page-kurumsal-kimlik .kk2-main-thumb {
    height: 340px;
  }
}
.page-kurumsal-kimlik .kk2-main-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page-kurumsal-kimlik .kk2-main-thumb-empty {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(135deg, #f2f2f2, #fafafa);
}
.page-kurumsal-kimlik .kk2-download {
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-left: 2px solid #f9f9f9;
  border-bottom: 2px solid #f9f9f9;
  color: #b7b7b7;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}
.page-kurumsal-kimlik .kk2-download:hover {
  color: #8b8b8b;
}
.page-kurumsal-kimlik .kk2-download--sm {
  position: static;
  width: 56px;
  height: 56px;
  border-bottom: 0;
  background: transparent;
}
.page-kurumsal-kimlik .kk2-download--disabled {
  opacity: 0.45;
  pointer-events: none;
}
.page-kurumsal-kimlik .kk2-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.page-kurumsal-kimlik .kk2-item {
  display: grid;
  grid-template-columns: 190px 1fr 56px;
  align-items: center;
  background: transparent;
  border: 2px solid #f9f9f9;
  border-radius: 2px;
  overflow: hidden;
}
@media (max-width: 600px) {
  .page-kurumsal-kimlik .kk2-item {
    grid-template-columns: 1fr;
  }
}
.page-kurumsal-kimlik .kk2-item-thumb {
  height: 92px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 2px solid #f9f9f9;
}
@media (max-width: 600px) {
  .page-kurumsal-kimlik .kk2-item-thumb {
    border-right: 0;
    border-bottom: 2px solid #f9f9f9;
    height: 96px;
  }
}
.page-kurumsal-kimlik .kk2-item-thumb img {
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.page-kurumsal-kimlik .kk2-item-thumb-empty {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(135deg, #f2f2f2, #fafafa);
}
.page-kurumsal-kimlik .kk2-item-meta {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0px 14px;
  height: 100%;
  border-right: 2px solid #f9f9f9;
}
@media (max-width: 600px) {
  .page-kurumsal-kimlik .kk2-item-meta {
    padding: 12px 14px 14px;
    align-items: center;
    justify-content: center;
  }
}
.page-kurumsal-kimlik .kk2-docicon {
  width: 18px;
  height: auto;
  display: block;
  flex: 0 0 auto;
  opacity: 0.95;
}
.page-kurumsal-kimlik .kk2-item-title {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page-kurumsal-kimlik .kk2-item .kk2-download--sm {
  color: #b7b7b7;
  background: transparent;
  transition: background 0.18s ease, color 0.18s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-kurumsal-kimlik .kk2-item .kk2-download--sm svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 600px) {
  .page-kurumsal-kimlik .kk2-item .kk2-download--sm {
    border-left: 0;
    border-top: 2px solid #f9f9f9;
    width: 100%;
    height: 52px;
  }
}
.page-kurumsal-kimlik .kk2-item .kk2-download--sm:hover {
  color: #8b8b8b;
}

.kalite-belgelerimiz .kalite-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 20px;
  padding: 30px 0;
}
@media (max-width: 1200px) {
  .kalite-belgelerimiz .kalite-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .kalite-belgelerimiz .kalite-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .kalite-belgelerimiz .kalite-list {
    grid-template-columns: 1fr;
  }
}
.kalite-belgelerimiz .kalite-item {
  display: flex;
  flex-direction: column;
  border-bottom: 5px solid #be1e2d;
  height: auto;
}
.kalite-belgelerimiz .kalite-item .kalite-card {
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.kalite-belgelerimiz .kalite-item .kalite-card:hover .pdf-btn {
  background: #be1e2d;
}
.kalite-belgelerimiz .kalite-item .img-wrapper {
  position: relative;
  background: #fff;
  padding: 10px;
  width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border: 1px solid #e0e0e0;
}
.kalite-belgelerimiz .kalite-item .img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.kalite-belgelerimiz .kalite-item .img-wrapper .pdf-btn {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 5;
  transition: all 0.3s ease;
}
.kalite-belgelerimiz .kalite-item .img-wrapper .pdf-btn img {
  width: 20px !important;
  height: auto !important;
  max-width: none !important;
}
.kalite-belgelerimiz .kalite-item .card-footer {
  text-align: center;
  padding-bottom: 10px;
  width: 100%;
}
.kalite-belgelerimiz .kalite-item .card-footer h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
}

.page-insan-kaynaklari .top-banner img {
  width: 100%;
}
.page-insan-kaynaklari .ik-basvuru {
  margin-top: 24px;
}
.page-insan-kaynaklari .ik-basvuru .ik-basvuru-card {
  background: url("../img/ik-basvur-bg.webp") center left no-repeat;
  border: 1px solid #e9e9e9;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 140px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.page-insan-kaynaklari .ik-basvuru .ik-basvuru-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.72);
}
.page-insan-kaynaklari .ik-basvuru .ik-basvuru-card .ik-content {
  position: relative;
  z-index: 2;
}
.page-insan-kaynaklari .ik-basvuru .ik-basvuru-card .ik-content h2 {
  font-size: 30px;
  color: #111;
  font-weight: 400;
}
.page-insan-kaynaklari .ik-basvuru .ik-basvuru-card .ik-content .ik-sub {
  margin: 0;
  font-size: 32px;
  color: #222;
  font-weight: 900;
}
.page-insan-kaynaklari .ik-basvuru .ik-basvuru-card .ik-cta {
  position: relative;
  z-index: 2;
}
.page-insan-kaynaklari .ik-basvuru .ik-basvuru-card .ik-cta .btn-basvur {
  display: inline-block;
  background: #24426e;
  color: #fff;
  padding: 18px 58px;
  text-decoration: none;
  border-radius: 2px;
  font-weight: 700;
  font-size: 20px;
  border: 2px solid transparent;
  transition: border-color 160ms ease, transform 160ms ease;
}
.page-insan-kaynaklari .ik-basvuru .ik-basvuru-card .ik-cta .btn-basvur:hover {
  border-color: #000;
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .page-insan-kaynaklari .ik-basvuru .ik-basvuru-card {
    flex-direction: column;
    text-align: center;
  }
  .page-insan-kaynaklari .ik-basvuru .ik-basvuru-card .ik-cta {
    margin-top: 14px;
  }
}
.page-insan-kaynaklari .ik-tabs {
  margin-top: 32px;
}
.page-insan-kaynaklari .ik-tabs .ik-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item {
  border-radius: 4px;
  overflow: hidden;
  background: #f0f0f0;
  transition: transform 180ms ease;
}
.page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item.is-active {
  background: #163a6b;
  color: #fff;
}
.page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item.is-active .ik-accordion-trigger {
  color: inherit;
}
.page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item.is-active .ik-accordion-trigger::before {
  background: rgba(255, 255, 255, 0.5);
}
.page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item .ik-accordion-trigger {
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  position: relative;
  color: #222;
  transition: color 120ms ease;
}
.page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item .ik-accordion-trigger::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 52px;
  width: 1px;
  height: 30px;
  background: rgba(0, 0, 0, 0.25);
  transform: translateY(-50%);
}
.page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item .ik-accordion-trigger::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  width: 52px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  line-height: 1;
  transition: transform 180ms ease;
}
.page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item.is-active .ik-accordion-trigger::after {
  content: "-";
}
.page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item .ik-accordion-body {
  padding: 0 24px 22px;
  background: #fff;
  font-size: 16px;
  line-height: 1.3;
  color: #111;
  padding-top: 20px;
  display: none;
}
.page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item .ik-accordion-body table {
  border: none !important;
  width: 100% !important;
  border-collapse: collapse;
  margin: 40px auto;
  margin-bottom: 0;
  counter-reset: ik-step;
  background: transparent !important;
}
.page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item .ik-accordion-body table tbody {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px 10px;
  align-items: start;
}
.page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item .ik-accordion-body table tr {
  display: contents;
}
.page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item .ik-accordion-body table td {
  border: none !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  background: transparent !important;
}
.page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item .ik-accordion-body table tr:first-child td {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 6px solid #fff;
  box-shadow: 0 0 0 1px rgba(197, 30, 42, 0.4), 0 8px 20px rgba(0, 0, 0, 0.1);
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item .ik-accordion-body table tr:first-child td::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: #c51e2a;
  z-index: 1;
}
.page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item .ik-accordion-body table tr:first-child td img {
  width: 70px !important;
  height: 70px !important;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
  margin: 0 !important;
  position: relative;
  z-index: 2;
}
.page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item .ik-accordion-body table tr:first-child td::before {
  counter-increment: ik-step;
  content: counter(ik-step, decimal-leading-zero);
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: #c51e2a;
  color: #fff;
  border: 3px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 3;
}
.page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item .ik-accordion-body table tr:last-child td {
  font-weight: 800;
  font-size: 18px;
  color: #111;
  letter-spacing: -0.01em;
  line-height: 1.2;
  padding-top: 5px !important;
  min-height: 50px;
}
.page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item .ik-accordion-body table tr:first-child td:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}
.page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item .ik-accordion-body table tr:last-child td:nth-child(1) {
  grid-column: 1;
  grid-row: 2;
}
.page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item .ik-accordion-body table tr:first-child td:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}
.page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item .ik-accordion-body table tr:last-child td:nth-child(2) {
  grid-column: 2;
  grid-row: 2;
}
.page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item .ik-accordion-body table tr:first-child td:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}
.page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item .ik-accordion-body table tr:last-child td:nth-child(3) {
  grid-column: 3;
  grid-row: 2;
}
.page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item .ik-accordion-body table tr:first-child td:nth-child(4) {
  grid-column: 4;
  grid-row: 1;
}
.page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item .ik-accordion-body table tr:last-child td:nth-child(4) {
  grid-column: 4;
  grid-row: 2;
}
.page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item .ik-accordion-body table tr:first-child td:nth-child(5) {
  grid-column: 5;
  grid-row: 1;
}
.page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item .ik-accordion-body table tr:last-child td:nth-child(5) {
  grid-column: 5;
  grid-row: 2;
}
@media (max-width: 1200px) {
  .page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item .ik-accordion-body table tbody {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 40px 20px;
  }
  .page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item .ik-accordion-body table td {
    grid-column: auto !important;
    grid-row: auto !important;
  }
  .page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item .ik-accordion-body table tr:first-child td:nth-child(1) {
    order: 1;
  }
  .page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item .ik-accordion-body table tr:last-child td:nth-child(1) {
    order: 2;
  }
  .page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item .ik-accordion-body table tr:first-child td:nth-child(2) {
    order: 3;
  }
  .page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item .ik-accordion-body table tr:last-child td:nth-child(2) {
    order: 4;
  }
  .page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item .ik-accordion-body table tr:first-child td:nth-child(3) {
    order: 5;
  }
  .page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item .ik-accordion-body table tr:last-child td:nth-child(3) {
    order: 6;
  }
  .page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item .ik-accordion-body table tr:first-child td:nth-child(4) {
    order: 7;
  }
  .page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item .ik-accordion-body table tr:last-child td:nth-child(4) {
    order: 8;
  }
  .page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item .ik-accordion-body table tr:first-child td:nth-child(5) {
    order: 9;
  }
  .page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item .ik-accordion-body table tr:last-child td:nth-child(5) {
    order: 10;
  }
}
@media (max-width: 580px) {
  .page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item .ik-accordion-body table tbody {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }
}
.page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item .ik-accordion-body p {
  margin-bottom: 15px;
}
.page-insan-kaynaklari .ik-tabs .ik-accordion .ik-accordion-item .ik-accordion-body p:last-child {
  margin-bottom: 0;
}

.page-katalog {
  padding: 20px 0;
  margin-bottom: 50px;
}
.page-katalog .katalog-search {
  margin-bottom: 40px;
}
.page-katalog .katalog-search .search-input {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  background: #fff;
}
.page-katalog .katalog-search .search-input svg {
  position: absolute;
  left: 15px;
  color: #999;
}
.page-katalog .katalog-search .search-input input {
  width: 100%;
  border: none;
  padding: 20px 15px 20px 50px;
  font-size: 18px;
  outline: none;
  color: #333;
}
.page-katalog .katalog-search .search-input input::-moz-placeholder {
  color: #ccc;
}
.page-katalog .katalog-search .search-input input::placeholder {
  color: #ccc;
}
.page-katalog .katalog-search .search-input button {
  background: #2a456f;
  color: #fff;
  border: none;
  padding: 0 50px;
  height: 68px;
  font-weight: 700;
  cursor: pointer;
  font-size: 18px;
  letter-spacing: 1px;
  transition: all 0.3s;
}
.page-katalog .katalog-search .search-input button:hover {
  background: #1a2f4d;
}
.page-katalog .katalog-tabs {
  margin-bottom: 40px;
}
.page-katalog .katalog-tabs ul {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-katalog .katalog-tabs ul li {
  border: 1px solid #e0e0e0;
  padding: 24px 30px;
  cursor: pointer;
  font-weight: 700;
  color: #999;
  transition: all 0.3s;
  text-transform: uppercase;
  background: #fff;
  font-size: 15px;
  flex: 1;
  text-align: center;
}
.page-katalog .katalog-tabs ul li.active {
  border-color: #2a456f;
  color: #2a456f;
  border-width: 2px;
  padding: 23px 29px;
}
.page-katalog .katalog-content .tab-pane {
  display: none;
}
.page-katalog .katalog-content .tab-pane.active {
  display: block;
}
.page-katalog .katalog-content .katalog-empty {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
  border: 1px dashed #e0e0e0;
  border-radius: 4px;
}
.page-katalog .katalog-content .katalog-empty .empty-icon {
  margin-bottom: 20px;
}
.page-katalog .katalog-content .katalog-empty .empty-icon svg {
  opacity: 0.5;
}
.page-katalog .katalog-content .katalog-empty h3 {
  color: #2a456f;
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 700;
}
.page-katalog .katalog-content .katalog-empty p {
  color: #999;
  font-size: 15px;
  margin: 0;
}
.page-katalog .katalog-content .katalog-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}
@media (max-width: 1200px) {
  .page-katalog .katalog-content .katalog-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 992px) {
  .page-katalog .katalog-content .katalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .page-katalog .katalog-content .katalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .page-katalog .katalog-content .katalog-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.page-katalog .katalog-content .katalog-item .item-inner {
  border: 1px solid #eee;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.page-katalog .katalog-content .katalog-item .item-inner .item-img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s;
  border: 5px solid #eaeaea;
  padding: 20px;
  height: 243px;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .page-katalog .katalog-content .katalog-item .item-inner .item-img {
    height: initial;
  }
}
.page-katalog .katalog-content .katalog-item .item-inner .item-img img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s;
}
.page-katalog .katalog-content .katalog-item .item-inner .item-info {
  margin-bottom: 15px;
  flex-grow: 1;
}
.page-katalog .katalog-content .katalog-item .item-inner .item-info h3 {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  margin: 0;
  line-height: 1.1;
  text-align: center;
  height: 30px;
}
.page-katalog .katalog-content .katalog-item .item-inner .item-footer {
  display: flex;
  border-top: 1px solid #eee;
  margin: 0 -20px -20px -20px;
}
.page-katalog .katalog-content .katalog-item .item-inner .item-footer a {
  flex: 1;
  padding: 15px 5px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #999;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
}
.page-katalog .katalog-content .katalog-item .item-inner .item-footer a:hover {
  color: #2a456f;
}
.page-katalog .katalog-content .katalog-item .item-inner .item-footer a:hover i {
  background: #2a456f;
}
.page-katalog .katalog-content .katalog-item .item-inner .item-footer a.btn-download {
  border-left: 1px solid #eee;
}
.page-katalog .katalog-content .katalog-item .item-inner .item-footer a.btn-download .btn-icon {
  background: #bcbcbc;
  color: #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.page-katalog .katalog-content .katalog-item .item-inner .item-footer a.btn-download .btn-icon svg {
  display: block;
}
.page-katalog .katalog-content .katalog-item:hover .item-inner .item-img img {
  transform: translateY(-5px);
}
.page-katalog .katalog-content .katalog-item:hover .item-inner .item-footer a:hover .btn-icon {
  background: #2a456f;
}

.page-iletisim {
  padding: 30px 0;
}
.page-iletisim * {
  box-sizing: border-box;
}
.page-iletisim .iletisim-container {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.page-iletisim .iletisim-container .sidebar-column {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding: 0 15px;
}
@media (max-width: 991px) {
  .page-iletisim .iletisim-container .sidebar-column {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.page-iletisim .iletisim-container .main-column {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
  padding: 0 15px;
}
@media (max-width: 991px) {
  .page-iletisim .iletisim-container .main-column {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 40px;
  }
}
.page-iletisim .contact-sidebar {
  margin-bottom: 30px;
}
.page-iletisim .contact-sidebar .btn-contact-form {
  display: flex;
  align-items: center;
  background-color: #234076;
  color: #fff;
  padding: 15px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 30px;
  font-size: 14px;
}
.page-iletisim .contact-sidebar .btn-contact-form .icon {
  margin-right: 15px;
}
.page-iletisim .contact-sidebar .btn-contact-form .icon img {
  max-height: 24px;
}
.page-iletisim .contact-sidebar .btn-contact-form:hover {
  opacity: 0.9;
}
.page-iletisim .contact-sidebar .contact-card {
  margin-bottom: 40px;
  border-bottom: 1px solid #eee;
  padding-bottom: 30px;
}
.page-iletisim .contact-sidebar .contact-card:last-child {
  border-bottom: none;
}
.page-iletisim .contact-sidebar .contact-card .card-title {
  color: #d9252d;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 25px;
  margin-top: 0;
}
.page-iletisim .contact-sidebar .contact-card .contact-details {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.page-iletisim .contact-sidebar .contact-card .contact-details li {
  display: flex;
  margin-bottom: 20px;
  align-items: flex-start;
}
.page-iletisim .contact-sidebar .contact-card .contact-details li .icon {
  width: 30px;
  flex-shrink: 0;
  margin-right: 10px;
  text-align: center;
}
.page-iletisim .contact-sidebar .contact-card .contact-details li .icon img {
  max-width: 100%;
}
.page-iletisim .contact-sidebar .contact-card .contact-details li .text {
  color: #333;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}
.page-iletisim .btn-map-view {
  display: inline-flex;
  align-items: center;
  justify-content: left;
  border: 1px solid #ddd;
  padding: 12px 15px;
  color: #333;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  background: #fff;
}
.page-iletisim .btn-map-view img {
  margin-right: 15px;
  height: 20px;
}
.page-iletisim .btn-map-view:hover {
  background: #f9f9f9;
}
.page-iletisim .btn-map-view.small {
  width: 100%;
  max-width: 100%;
  margin-top: 15px;
  justify-content: center;
}
.page-iletisim .btn-map-view.small img {
  margin-right: 10px;
}
.page-iletisim .contact-main .main-title {
  color: #d9252d;
  font-weight: 700;
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 20px;
}
.page-iletisim .contact-main .search-wrap {
  display: flex;
  margin-bottom: 30px;
}
.page-iletisim .contact-main .search-wrap .form-control {
  height: 50px;
  border-radius: 0;
  border: 1px solid #ddd;
  box-shadow: none;
  flex-grow: 1;
  font-size: 14px;
  padding: 0 20px;
  width: 100%;
  display: block;
  background-color: #fff;
  background-image: none;
}
.page-iletisim .contact-main .search-wrap .btn-search {
  background: #234076;
  color: #fff;
  border: none;
  padding: 0 40px;
  font-weight: 700;
  height: 50px;
  cursor: pointer;
  transition: all 0.3s;
}
.page-iletisim .contact-main .search-wrap .btn-search:hover {
  opacity: 0.9;
}
.page-iletisim .contact-main .map-area {
  margin-bottom: 30px;
}
.page-iletisim .contact-main .map-area img {
  width: 100%;
  height: auto;
}
.page-iletisim .contact-main .service-list .service-item {
  background: #fff;
  padding: 25px 0;
  border-bottom: 1px solid #eee;
}
.page-iletisim .contact-main .service-list .service-item:last-child {
  border-bottom: none;
}
.page-iletisim .contact-main .service-list .service-item .service-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.page-iletisim .contact-main .service-list .service-item .info-col {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
  padding: 0 15px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .page-iletisim .contact-main .service-list .service-item .info-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.page-iletisim .contact-main .service-list .service-item .phone-col {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 15px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .page-iletisim .contact-main .service-list .service-item .phone-col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 576px) {
  .page-iletisim .contact-main .service-list .service-item .phone-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.page-iletisim .contact-main .service-list .service-item .action-col {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding: 0 15px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .page-iletisim .contact-main .service-list .service-item .action-col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 576px) {
  .page-iletisim .contact-main .service-list .service-item .action-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.page-iletisim .contact-main .service-list .service-item .svc-name {
  display: flex;
  align-items: flex-start;
  color: #000;
  font-size: 15px;
  margin-bottom: 15px;
}
.page-iletisim .contact-main .service-list .service-item .svc-name .icon {
  color: #234076;
  width: 25px;
  margin-right: 10px;
  flex-shrink: 0;
}
.page-iletisim .contact-main .service-list .service-item .svc-name .icon img {
  max-width: 100%;
}
.page-iletisim .contact-main .service-list .service-item .svc-name strong {
  font-weight: 700;
  line-height: 1.3;
}
.page-iletisim .contact-main .service-list .service-item .svc-address {
  padding-left: 35px;
  color: #666;
  font-size: 13px;
  line-height: 1.5;
}
.page-iletisim .contact-main .service-list .service-item .svc-phone {
  display: flex;
  align-items: flex-start;
  font-weight: 700;
  font-size: 14px;
  color: #333;
}
.page-iletisim .contact-main .service-list .service-item .svc-phone .icon {
  width: 25px;
  margin-right: 10px;
  flex-shrink: 0;
}
.page-iletisim .contact-main .service-list .service-item .svc-phone .icon img {
  max-width: 100%;
}
.page-iletisim .contact-main .service-list .service-item .svc-phone div {
  line-height: 1.4;
}
.page-iletisim .contact-main .service-list .service-item .svc-email {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 15px;
}
.page-iletisim .contact-main .service-list .service-item .svc-email .icon {
  width: 25px;
  margin-right: 10px;
  flex-shrink: 0;
}
.page-iletisim .contact-main .service-list .service-item .svc-email .icon img {
  max-width: 100%;
}
.page-iletisim .contact-main .service-list .service-item .svc-email a {
  color: #333;
  text-decoration: none;
}
.page-iletisim .contact-main .service-list .service-item .svc-email a:hover {
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */