/* General Css Start (404 page, cookie style etc) */

body,
html {
  transition: 0s;
}

body {
  background: #e7ebf2;
  font-family: "Afacad", Arial, sans-serif;
  font-weight: 400;
}

button {
  outline: none !important;
}

body ::-webkit-scrollbar,
html ::-webkit-scrollbar {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Homepage Slider */
.homepage-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #fff;
}

.homepage-slider.is-single .homepage-slider-nav {
  display: none;
}

.homepage-slider-swiper {
  width: 100%;
  height: 100%;
}

.homepage-slide {
  position: relative;
  min-height: calc(100vh - 143px);
  max-height: calc(100vh - 143px);
  display: flex;
  align-items: stretch;
}

.homepage-slide-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.homepage-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.homepage-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: .3s all;
}

.homepage-slide::before,
.homepage-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.homepage-slide::before {
  --grid-margin: 140px;
  --grid-section: calc((100% - (var(--grid-margin) * 2)) / 4);
  background-image: linear-gradient(90deg,
      rgba(255, 255, 255, 0.18),
      rgba(255, 255, 255, 0.18)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18));
  background-size: 1px 100%, 1px 100%, 1px 100%, 1px 100%, 1px 100%;
  background-position: var(--grid-margin) 0,
    calc(var(--grid-margin) + var(--grid-section)) 0,
    calc(var(--grid-margin) + var(--grid-section) * 2) 0,
    calc(var(--grid-margin) + var(--grid-section) * 3) 0,
    calc(100% - var(--grid-margin)) 0;
  background-repeat: no-repeat;
  opacity: 0.3;
}

.homepage-slide::after {
  background-image: linear-gradient(rgba(255, 255, 255, 0.18),
      rgba(255, 255, 255, 0.18)),
    linear-gradient(rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18));
  background-size: 100% 1px, 100% 1px;
  background-position: 0 410px, 0 820px;
  background-repeat: no-repeat;
  opacity: 0.3;
}

.homepage-slide-content {
  position: relative;
  z-index: 3;
  margin: 120px 120px 200px 142px;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.homepage-slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.homepage-slide-title {
  font-size: clamp(38px, 70px, 88px);
  line-height: 1.15;
  margin: 0;
  font-weight: 400;
  color: #fff;
}

.homepage-slide-description {
  margin: 0;
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.homepage-slide-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 42px;
  background: #0c367c;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  border: none;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
  align-self: flex-start;
}

.homepage-slide-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(12, 54, 124, 0.35);
  background: #0f3f86;
}

.homepage-slider-meta {
  position: absolute;
  z-index: 4;
  bottom: 0px;
  left: 142px;
  width: calc(100% - 284px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  height: 210px;
}

.homepage-slider-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  width: 100%;
  flex: 0 0 75%;
  height: 100%;
}

.homepage-slider-step {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  padding: 0;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
  padding-left: 30px;
}

.homepage-slider-step:hover,
.homepage-slider-step.is-active {
  color: #fff;
}

.homepage-slider-step-index {
  font-size: 24px;
  letter-spacing: 0.2em;
  display: block;
  padding-top: 51px;
}

.homepage-slider-step-text {
  font-size: 24px;
  line-height: 1.2;
  max-width: 100%;
  color: inherit;
  text-align: left;
}

.homepage-slider-step:before {
  content: "";
  position: absolute;
  left: 0px;
  height: 55px;
  width: 1px;
  background: white;
  top: 50%;
  transform: translateX(-50%);
}

.homepage-slider-step-progress {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  overflow: hidden;
  position: absolute;
  left: 0;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.homepage-slider-step.is-active .homepage-slider-step-progress {
  opacity: 1;
}

/* Aktiften sonraki 1. slide */
.homepage-slider-step.is-next .homepage-slider-step-progress {
  opacity: 0.8;
}

.is-next {
  opacity: .8;
}

.is-next-2 {
  opacity: .6;
}


/* Aktiften sonraki 2. slide */
.homepage-slider-step.is-next-2 .homepage-slider-step-progress {
  opacity: 0.6;
}

.homepage-slider-step-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: none;
}

.homepage-slider-step-progress span.is-animating {
  transition: transform 3s linear;
  transform: scaleX(1);
}

.homepage-slider-step-progress span.is-complete {
  transform: scaleX(1);
}

.homepage-slider-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 25%;
  margin: 0 auto;
  justify-content: center;
}

.homepage-slider-nav-btn {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.homepage-slider-nav-btn svg path {
  transition: fill 0.3s ease;
}

.homepage-slider-nav-btn:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.homepage-slider-nav-btn:hover svg path {
  fill: #fff;
}

.homepage-slider-nav-btn.next svg {
  transform: rotate(180deg);
}

@media (max-width: 1440px) {
  .homepage-slide {
    min-height: calc(100vh - 143px);
    max-height: calc(100vh - 143px);
  }
}

@media (max-width: 1400px) {
  .homepage-slide-content {
    padding: 0px 80px 40px;
    margin: 60px;
  }
}

@media (max-width: 1280px) {
  button.homepage-slider-step {
    gap: 5px;
  }

  .homepage-slide::before {
    background: none;
  }

  .homepage-slider-meta {
    width: 100%;
    left: 24px;
  }

  .homepage-slider-nav-btn {
    width: 60px;
    height: 60px;
  }

  .homepage-slide-content {
    padding: 30px;
    margin: 0;
    gap: 40px;
    padding-top: 100px;
  }

  .homepage-slide-title {
    font-size: 55px;
  }

  .homepage-slide::after {
    background: none;
  }

  .homepage-slider-step-text {
    font-size: 20px;
    padding-top: 5px;
  }

  .homepage-slider-step:before {
    height: 35px;
  }

  .homepage-slide {
    min-height: calc(100vh - 143px);
    max-height: calc(100vh - 143px);
  }
}

@media (max-width: 1024px) {
  .homepage-slide {
    min-height: calc(100vh - 143px);
    max-height: calc(100vh - 143px);
  }

  .homepage-slide-content {
    padding: 80px 48px 220px;
  }

  .homepage-slider-meta {}

  .homepage-slider-nav-btn {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 991px) {
  .homepage-slider-step-text {
    padding-right: 9px;
    font-size: 17px;
  }

  .homepage-slider-nav-btn {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 767px) {
  .homepage-slide {
    min-height: calc(100vh - 90px);
    max-height: calc(100vh - 90px);
  }

  .homepage-slide-content {
    padding: 64px 24px 40px;
    justify-content: flex-end;
  }

  .homepage-slide-title {
    font-size: 36px;
  }

  .homepage-slider-meta {
    padding: 12px;
    gap: 20px;
    display: none;
  }

  .mobile-slider-line {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #b4c1d6;
    z-index: 2;
    overflow: hidden;
  }

  .mobile-slider-line-progress {
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left center;
    transition: none;
  }

  .mobile-slider-line-progress.is-animating {
    transition: transform 3s linear;
    transform: scaleX(1);
  }

  .mobile-slider-line-progress.is-complete {
    transform: scaleX(1);
  }

  .homepage-slider-steps {
    grid-template-columns: unset;
    overflow-y: scroll;
    display: none;
  }

  .homepage-slider-nav {
    display: none;
  }

  .homepage-slider-nav-btn {
    width: 48px;
    height: 48px;
  }
}

/* Homepage About */
.homepage-about-section {
  margin: 100px 0 215px;
}

.homepage-about-inner {
  padding: 0 105px;
  margin: 0 auto;
  display: flex;
  /* align-items: center; */
  gap: 78px;
}

.homepage-about-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.homepage-about-tag:before {
  content: "";
  background: #dbe1eb;
  position: absolute;
  left: 10px;
  width: 24px;
  height: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.homepage-about-tag {
  display: inline-flex;
  background: #c1cade;
  padding: 12px 16px 12px 48px;
  border-radius: 4px;
  color: #04132b;
  font-size: 24px;
  width: fit-content;
  position: relative;
}

.homepage-about-tag:before {
  content: "";
  background: #dbe1eb;
  position: absolute;
  left: 10px;
  width: 24px;
  height: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.homepage-about-title {
  font-size: clamp(36px, 3vw, 56px);
  line-height: 1.25;
  font-weight: 400;
  color: #04132b;
  margin: 0;
  max-width: 725px;
}

.homepage-about-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #04132b;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  max-width: 580px;
}

.homepage-about-actions {
  margin-top: 12px;
}

.homepage-about-button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 34px;
  background: #0c367c;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  text-decoration: none;
  transition:
    background 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.homepage-about-button-icon {
  display: inline-flex;
  transition: transform 0.4s ease;
}

/* HOVER */
.homepage-about-button:hover {
  background: #114a9f;
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(12, 54, 124, 0.35);
}

.homepage-about-button:hover .homepage-about-button-icon {
  transform: rotate(45deg) scale(1.15);
}

.homepage-about-button:hover span {
  color: #ffffff;
}


.homepage-about-media {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
  position: relative;
  height: fit-content;
}

.homepage-about-media-image {
  width: 680px;
  height: 811px;
  overflow: hidden;
}

.homepage-about-media-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.homepage-about-media-cta {
  width: 7.5vw;
  height: 7.5vw;
  border: none;
  background: #0c367c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(-50%, 50%);
}

.homepage-about-media-cta svg {
  width: 3.2vw;
  height: 3.2vw;
  transition: transform 0.35s ease;
}

/* HOVER */
.homepage-about-media-cta:hover {
  background: #114a9f;
  /* biraz daha aÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±k ton */
  transform: translate(-50%, 50%) scale(1.08);
  box-shadow: 0 20px 40px rgba(12, 54, 124, 0.35);
}

.homepage-about-media-cta:hover svg {
  transform: scale(1.15);
}


.homepage-products-section {
  background: #0c367c;
  color: #fff;
  padding: 60px 0 90px 80px;
  overflow: hidden;
}

.homepage-products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 74px;
  padding-bottom: 20px;
  margin-bottom: 5vw;
  position: relative;
  padding-right: 80px;
}

.homepage-products-tabs {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex: 1;
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
}

.homepage-products-tabs button:before {
  content: "";
  height: 100%;
  width: 1px;
  background: white;
  position: absolute;
  left: 0;
}

.homepage-products-header:after {
  content: "";
  position: absolute;
  width: 15%;
  right: 310px;
  height: 70px;
  background: linear-gradient(90deg, rgba(12, 54, 124, 0) 0%, #0c367c 100%);
  pointer-events: none;
}

.homepage-products-tabs button {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
  padding-left: 30px;
  align-items: flex-start;
  flex: 0 0 250px;
  position: relative;
}

.homepage-products-tabs button.is-active {
  color: #fff;
}

.homepage-products-tab-index {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.15em;
}

.homepage-products-tab-label {
  font-size: 24px;
  font-weight: 400;
}

.homepage-products-see-all {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #082c65;
  background: #b4c1d6;
  text-decoration: none;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: background 0.3s ease, color 0.3s ease;
  font-weight: bold;
  font-size: 24px;
}

.homepage-products-see-all-icon {
  display: inline-flex;
  transition: transform 0.4s ease;
}

.homepage-products-see-all:hover {
  background: #fff;
  color: #0c367c;
}

.homepage-products-see-all:hover .homepage-products-see-all-icon {
  transform: rotate(45deg);
}

.homepage-products-content {
  position: relative;
}

.homepage-products-slider {
  display: none;
}

.homepage-products-slider.is-active {
  display: block;
}

.homepage-products-slide {
  height: auto;
  transition: filter 0.3s ease;
}

.homepage-products-bottom {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 5vw;
}

.homepage-products-see-all.bottom-area {
  display: none;
}

.homepage-products-index {
  font-size: 40px;
  font-weight: 600;
}

.homepage-products-index span:last-child {
  font-size: 24px;
  letter-spacing: 0.15em;
}

.homepage-products-nav {
  display: flex;
  gap: 16px;
}

.homepage-products-nav-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.homepage-products-nav-btn svg {
  transition: transform 0.4s ease;
}

.homepage-products-nav-btn.prev svg {
  transform: rotate(180deg);
}

.homepage-products-nav-btn:hover {
  border-color: #fff;
  background: #fff;
}

.homepage-products-nav-btn:hover svg path {
  fill: #0c367c;
}

.homepage-products-nav-btn.prev:hover svg path {
  fill: #0c367c;
}

@media (max-width: 1500px) {
  .homepage-about-tag {
    font-size: 18px;
  }

  .homepage-about-media-image {
    width: 600px;
    height: 700px;
  }

  .homepage-products-section {
    padding-left: 50px;
  }
}

@media (max-width: 1400px) {
  .homepage-about-inner {
    padding: 0 80px;
  }

  .homepage-about-media-image {
    width: 520px;
    height: 640px;
  }
}

@media (max-width: 1199px) {
  .homepage-about-media-image {
    width: 400px;
    height: 500px;
  }

  .homepage-about-section {
    margin: 70px 0 120px;
  }
}

@media (max-width: 1024px) {
  .homepage-about-inner {
    flex-direction: column;
    gap: 48px;
    padding: 0 40px;
  }

  .homepage-about-media {
    align-items: flex-start;
  }

  .homepage-about-media-image {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .homepage-products-see-all.bottom-area {
    display: block;
  }

  .homepage-products-see-all {
    display: none;
  }
}

@media (max-width: 767px) {
  .homepage-about-section {
    margin: 60px 0 70px;
  }

  .homepage-about-content {
    gap: 22px;
  }

  .homepage-about-text p {
    font-size: 15px;
  }

  .homepage-about-button {
    padding: 10px 12px;
    font-size: 18px;
  }

  .homepage-about-actions {
    margin-top: 0;
  }

  .homepage-about-inner {
    padding: 0 24px;
  }

  .homepage-about-tag {
    font-size: 13px;
    padding-right: 10px;
    padding-left: 32px;
  }

  .homepage-about-tag:before {
    width: 15px;
    height: 15px;
  }

  .homepage-about-title {
    font-size: 22px;
  }

  .homepage-about-text {
    font-size: 18px;
  }

  .homepage-about-media-cta {
    width: 50px;
    height: 50px;
    left: 10px;
  }
}

@media (max-width: 1280px) {
  .homepage-products-tabs {
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  .homepage-products-section {
    padding: 40px 40px 60px;
  }

  .homepage-products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    overflow: hidden;
  }

  .homepage-products-header:after {
    right: -30px;
  }
}

@media (max-width: 767px) {
  .homepage-products-section {
    padding: 32px 20px 50px;
  }

  .homepage-products-see-all {
    padding: 10px 12px;
    font-size: 15px;
  }

  .homepage-products-header:after {
    right: 20px;
  }

  .homepage-products-tabs {
    width: 100%;
  }

  .homepage-products-header {
    padding-right: 24px;
  }

  .homepage-products-tabs button {
    font-size: 15px;
    flex: 0 0 170px;
  }

  .homepage-products-tab-index,
  .homepage-products-tab-label {
    font-size: 15px;
  }

  .homepage-products-nav-btn {
    width: 48px;
    height: 48px;
  }
}

a:hover {
  text-decoration: none;
  outline: 0 !important;
}

::-webkit-scrollbar {
  width: 0;
}

/* Special Page */
section.page.single-page {
  padding: 300px 180px 100px;
  color: #fff;
}

section.page.single-page h2 {
  margin-bottom: 95px;
  font-size: 58px;
  font-weight: bold;
  color: white;
}

section.page.single-page p,
section.page.single-page tr,
section.page.single-page td,
section.page.single-page th {
  font-size: 20px;
  color: #808080;
}

section.page.single-page ol {
  padding: 0;
  list-style: none;
}

section.page.single-page ol li {
  color: #808080;
  padding: 5px 0;
  font-size: 20px;
  padding-left: 30px;
  position: relative;
}

section.page.single-page ol li:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

section.page.single-page p strong {
  font-weight: 300;
  color: white;
}

@media only screen and (max-width: 1199px) {
  section.page.single-page {
    padding: 260px 80px 70px;
  }

  section.page.single-page h2 {
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 767px) {
  section.page.single-page {
    padding: 160px 20px 40px;
    font-size: 13px;
  }

  section.page.single-page h2 {
    font-size: 23px;
    margin-bottom: 35px;
  }

  section.page.single-page p strong {
    font-size: 15px;
  }
}

/* Special Page */

/* Bootstrap Pagination */
ul.pagination {
  border-radius: 0;
  align-items: center;
  justify-content: center;
  margin-top: 45px;
}

ul.pagination .page-item .page-link {
  background: none;
  border: 1px solid #393233;
  border-radius: 0;
  color: #a3a3a3;
  box-shadow: none;
  outline: 0 !important;
  transition: 0.4s;
}

ul.pagination .page-item+.page-item {
  margin-left: 10px;
}

ul.pagination .page-item.active .page-link {
  border: 2px solid #393233;
  color: #000;
}

ul.pagination .page-item .page-link:hover {
  background: #393233;
}

/* Bootstrap Pagination */

/* 404 Page */
.page.nf404 {
  padding-top: 260px;
  padding-bottom: 100px;
}

.page.nf404 .page404-content {
  text-align: center;
}

.page.nf404 .page404-content .svg svg {
  width: 100%;
}

.page.nf404 .svg path {
  fill: #ffffff;
}

.nf404 h2 {
  font-size: 57px;
  color: white;
  font-weight: 600;
  margin: 30px 0;
}

.nf404 h3 {
  color: white;
  font-weight: 400;
  font-size: 21px;
}

.page.nf404 a {
  transition: 0.4s;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255 255 255 / 0.3);
  border-radius: 40px;
  height: 60px;
  font-size: 15px;
  color: white;
  margin-top: 50px;
}

.page.nf404 a svg {
  margin-right: 15px;
  stroke: white;
}

.page.nf404 a:hover {
  background: white;
  color: #000;
}

.page.nf404 a:hover svg {
  stroke: #000;
}

/* 404 Page*/

/* Cookie */
body .cc-window {
  bottom: 50px !important;
  left: 50% !important;
  max-width: 460px;
  height: 93px;
  border-radius: 100px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background-color: rgba(34, 41, 48, 0.8);
  padding: 0 30px !important;
  -webkit-transform: translateX(-50%) translateZ(100px);
  -ms-transform: translateX(-50%) translateZ(100px);
  transform: translateX(-50%) translateZ(100px);
  -webkit-transition: none;
  flex-direction: row !important;
  -o-transition: none;
  transition: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 99999;
}

body .cc-window .cc-message {
  font-size: 15px;
  color: #fff;
  line-height: normal;
  margin: 0 !important;
}

body .cc-window .cc-message a {
  transition: 0.4s;
  opacity: 1;
}

body .cc-compliance a.cc-btn.cc-dismiss {
  transition: 0.4s;
  width: 56px;
  height: 56px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: transparent;
  border: 1px solid #000;
  border-radius: 100px;
  position: relative;
  padding: 0;
  color: transparent;
  display: block;
}

body .cc-compliance a.cc-btn.cc-dismiss:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-image: url(../img/svg/check-icon.svg);
  width: 20px;
  height: 15px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

body .cc-compliance a.cc-btn.cc-dismiss:hover {
  background: #000;
}

body .cc-banner.cc-theme-edgeless .cc-message a.cc-link:hover {
  color: #000000;
  text-decoration: underline;
}

.cc-floating.cc-theme-edgeless .cc-message {
  margin: 0 !important;
}

@media only screen and (max-width: 767px) {
  body .cc-window {
    width: 100%;
    max-width: 100% !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    left: 50% !important;
    right: auto !important;
    -webkit-transform: translateX(-50%) scale(0.9);
    -ms-transform: translateX(-50%) scale(0.9);
    transform: translateX(-50%) scale(0.9);
    bottom: 30px !important;
    height: 110px;
    padding: 0 30px !important;
  }

  .cc-floating.cc-theme-edgeless .cc-message {
    margin: 0 !important;
  }
}

/* Cookie */

/* Form Alert Style */
.form-alert {
  position: fixed;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}

.form-alert .alert {
  display: flex;
  color: #fff;
  background: #00000094;
  border-color: rgb(255 255 255 / 34%);
  margin-bottom: 0;
  backdrop-filter: blur(10px);
  border-radius: 0;
}

.form-alert .alert .icon {
  display: flex;
  align-items: center;
  margin-right: 20px;
  color: #ffc107;
  font-size: 24px;
}

.form-alert .alert .message {
  display: flex;
  align-items: center;
}

.form-alert .alert .message strong,
.form-alert .alert .message b {
  margin-right: 13px;
}

.form-alert .alert .message button.close {
  height: 100%;
  color: #fff;
  padding: 0;
  display: flex;
  padding: 9px;
  opacity: 1;
  outline: 0;
  box-shadow: none;
}

.form-alert .alert .message button.close span:before {}

.form-alert .alert .message button.close span {
  opacity: 1;
}

/* Form Alert Style */

/* General Css End */

/* Header start */

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: #dbe1eb;
  position: relative;
  z-index: 50;
}

header .header-logo {}

header .header-logo a {}

header .header-logo a img {}

header .header-logo,
header .header-menu-right-wrapper {
  flex: 1;
}

header .header-menu-wrapper {
  flex: 0;
  display: flex;
  justify-content: center;
}

header .header-menu-wrapper ul {
  display: flex;
}

header .header-menu-wrapper ul li {
  transition: 0.4s;
}

header .header-menu-wrapper ul li a {
  font-size: 18px;
  color: #04132b;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 47px 20px;
  transition: 0.4s;
}

header .header-menu-wrapper ul li a:hover {
  font-weight: 600;
}

.header-mega-grid--simple a svg {
  opacity: 0;
  transition: 0.4s;
}

header .header-menu-wrapper ul li a:hover svg {
  opacity: 1;
}

.header-menu-arrow svg {
  transition: transform 0.3s ease;
}

.header-menu-has-mega>a {
  gap: 10px;
}

.header-menu-has-mega:hover>a .header-menu-arrow svg {}

.header-menu-has-mega {
  position: static;
}

.header-mega-menu {
  position: absolute;
  left: 0;
  top: 122px;
  width: 100%;
  right: 0;
  background: #dce3f1;
  padding: 60px 50px 60px 5vw;
  display: flex;
  gap: 48px;
  box-shadow: 0 30px 60px rgba(4, 19, 43, 0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.header-menu-has-mega:hover .header-mega-menu {
  opacity: 1;
  pointer-events: auto;
}

.header-mega-column--primary {
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.header-mega-category {
  width: 100%;
  border: none;
  background: transparent;
  padding: 16px 0 !important;
  border-bottom: 1px solid rgba(4, 19, 43, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  color: #0a2b63;
  cursor: pointer;
  transition: color 0.3s ease;
}


.header-mega-category svg {
  transition: transform 0.3s ease;
}

.header-mega-category.is-active {
  color: #082c65;
  font-weight: 600;
}

.header-mega-category.is-active svg {
  transform: rotate(45deg);
}

.header-mega-column--content {
  flex: 1;
}

.header-mega-simple {
  width: 100%;
}

.header-mega-menu--simple .header-mega-panel {
  display: block;
  width: 100%;
}

.header-menu-has-mega--simple .header-mega-menu {
  align-items: stretch;
}

.header-mega-panel {
  display: none;
}

.header-mega-panel.is-active {
  display: block;
}

.header-mega-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
}

.header-mega-grid a {
  font-size: 20px;
  color: #04132b;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 22px 40px !important;
  position: relative;
}

.header-mega-grid a:hover {
  color: #0a2b63;
  text-decoration: underline;
}

.header-mega-grid--simple {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 950px;
  margin: 0 auto;
}

.header-mega-grid--simple a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  gap: 13px !important;
}

.header-mega-grid--simple a:hover {
  color: #fff;
  background: linear-gradient(90deg, #0c367c 0%, rgba(22, 98, 226, 0) 100%);
  text-decoration: none;
}

.header-mega-grid a::before,
.header-mega-grid a::after {
  content: "";
  position: absolute;
  background: rgba(4, 19, 43, 0.18);
  pointer-events: none;
}

.header-mega-grid a::before {
  width: 1px;
  height: 100%;
  right: 0;
  top: 0;
}

.header-mega-grid a::after {
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
}

.header-mega-grid a.is-last-column::before {
  display: none;
}

.header-mega-grid a.is-last-row::after {
  display: none;
}

header .header-menu-right-wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

header .header-menu-right-wrapper .header-menu-right-wrapper-contact-button:hover {
  background: white;
  color: #0c367c;
}

header .header-menu-right-wrapper .header-menu-right-wrapper-language-button:hover {
  color: white;
}

header .header-menu-right-wrapper .header-menu-right-wrapper-search-button:hover svg path {
  stroke: white;
}

header .header-menu-right-wrapper .header-menu-right-wrapper-search-button svg path {
  transition: 0.4s;
}

header .header-menu-right-wrapper .header-menu-right-wrapper-search-button {
  padding: 20px;
  background: #0c367c29;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  outline: none;
  border: unset;
  height: 100%;
}

header .header-menu-right-wrapper .header-menu-right-wrapper-search-button svg {}

header .header-menu-right-wrapper .header-menu-right-wrapper-search-button svg path {}

header .header-menu-right-wrapper .header-menu-right-wrapper-language-button {
  padding: 20px;
  background: #0c367c29;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  color: #0a2b63;
  transition: 0.4s;
}

header .header-menu-right-wrapper .header-menu-right-wrapper-contact-button {
  padding: 20px;
  background: #0c367c;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  color: white;
  cursor: pointer;
  transition: 0.4s;
}

body.header-search-open {
  overflow: hidden;
}

.header-search-overlay {
  position: fixed;
  left: 0;
  top: 118px;
  width: 100%;
  height: calc(100vh - 118px);
  background: #dde4f1;
  padding: 48px 5vw 72px;
  z-index: 220;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-24px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  overflow-y: auto;
}

.header-search-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.header-search-panel {
  max-width: 1520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

.header-search-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-search-panel-top h2 {
  font-size: 32px;
  color: #04132b;
  margin: 0;
}

.header-search-close {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  right: -5px;
}

.header-search-close:hover {}

.header-search-form {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid #292d32;
  background: transparent;
  padding: 32px 28px;
  color: #000;
}

.header-search-form input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 24px;
  color: #000;
  outline: none;
}

.header-search-form input::placeholder {
  color: rgba(4, 19, 43, 0.6);
}

.header-search-form button {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.header-search-form button:hover {
  border-color: #0c367c;
  background: rgba(12, 54, 124, 0.12);
}

.header-search-results {
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.header-search-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
}

.header-search-card {
  min-height: 100%;
}

.product-view-all {
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border: 1px solid #0c367c;
  color: #0c367c;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.product-view-all:hover {
  background: #0c367c;
  color: #fff;
  transform: translateY(-3px);
}

.product-view-all:hover svg path {
  fill: white;
}

@media (max-width: 1600px) {
  .header-search-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1199px) {
  .header-search-form {
    padding: 18px 20px;
  }

  .header-search-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .header-search-overlay {
    top: 0;
    height: 100vh;
    padding: 32px 20px 48px;
  }

  .header-search-panel {
    margin-top: 90px;
  }

  .header-search-close {
    top: -15px;
    right: -4px;
  }

  .header-search-form {
    align-items: stretch;
  }

  .header-search-form button {
    border-radius: 14px;
  }

  .header-search-panel-top h2 {
    font-size: 26px;
  }
}

@media (max-width: 600px) {
  .header-search-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

/* Certificates */
.certificate-wrapper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid #dbe1eb;
  border-left: 1px solid #dbe1eb;
  background: #e7ebf2;
  margin-bottom: 70px;
}

.certificate-item {
  border-right: 1px solid #dbe1eb;
  border-bottom: 1px solid #dbe1eb;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 30px;
}

.certificate-item img {
  max-width: 100%;
  height: auto;
  opacity: 0.6;
  transition: opacity 0.4s ease;
  filter: grayscale(0);
}

.certificate-item:hover img {
  opacity: 1;
}

@media (max-width: 1440px) {
  .certificate-wrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1023px) {
  .certificate-wrapper {}
}

@media (max-width: 991px) {
  .certificate-item img {
    opacity: 1;
  }

  .certificate-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .certificate-wrapper {}

  .certificate-item {
    min-height: 180px;
  }
}

@media (max-width: 1440px) {
  .header-mega-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .header-mega-grid a {
    padding: 22px 24px !important;
  }
}

@media (max-width: 1200px) {
  header .header-menu-wrapper ul li a {
    padding: 47px 10px;
  }

  header .header-logo,
  header .header-menu-right-wrapper {
    flex: unset;
  }
}

@media (max-width: 991px) {
  header {
    display: none;
  }

  .mobile-menu-logo {
    position: fixed;
    left: 24px;
    top: 20px;
    width: 80px;
  }

  .mobil-menu-background {
    position: fixed;
    top: 0;
    left: 0;
    height: 90px;
    width: 100%;
    background: #dbe1eb;
  }
}

/* Header End */

/* Footer Start */

/* Footer End */

/* Page Header Start */
.page-header {}

.page-header .page-header-box {
  background: #b4c1d6;

  width: fit-content;

  margin-top: 97px;

  margin-bottom: 50px;

  margin-left: 100px;

  padding: 13px 43px;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 14px;
}

.page-header .page-header-box div {
  width: 16px;

  height: 16px;

  background: #04132b;
}

.page-header .page-header-box h1 {
  margin: 0;

  font-weight: 400;

  font-size: 24px;

  line-height: normal;
}

/* Page Header End */

/* Blogs Wrapper Start */
.blogs-wrapper {
  grid-template-columns: repeat(3, 1fr);

  display: grid;

  padding-top: 20px;

  padding: 20px 40px 100px;

  gap: 70px 0;
}

.homepage-services-title {
  margin-left: 100px;
  display: flex;
  justify-content: space-between;
  margin-right: 120px;
}

.homepage-services-title h3 {
  font-size: 29px;
  color: #04132b;
  max-width: 1200px;
  font-weight: 400;
}

.homepage-services-title a {
  background: #b4c1d6;
  padding: 12px 24px;
  height: fit-content;
  color: #0c367c;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 24px;
  margin-top: 20px;
  transition: 0.4s;
  font-weight: bold;
}

.homepage-services-title a:hover {
  background: white;
}

.blogs-wrapper.services-blogs-wrapper {
  grid-template-columns: repeat(2, 1fr);
}

.blogs-wrapper .blogs-wrapper-item:nth-child(3n) {
  border-right: unset;
}

.blogs-wrapper .blogs-wrapper-item {
  border-right: 1px solid #ffffffcc;

  padding-right: 3.5vw;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-left: 3.5vw;
}

.blogs-wrapper .blogs-wrapper-item .blogs-wrapper-item-button {
  margin-top: auto;
}


.blogs-wrapper .blogs-wrapper-item .img-wrapper {
  flex-shrink: 0;
}


.homepage-services-section .blogs-wrapper.services-blogs-wrapper .blogs-wrapper-item:nth-child(2n) {
  border-right: 0;
}

.blogs-wrapper .blogs-wrapper-item .blogs-wrapper-item-count {
  font-weight: 400;

  font-size: 32px;

  color: #b4c1d6;

  margin-bottom: 25px;

  display: block;
}

.blogs-wrapper .blogs-wrapper-item .blogs-wrapper-item-title {
  font-size: 32px;

  color: #0c367c;

  line-height: 1.3;

  font-weight: 600;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;

  min-height: 83px;
}

.blogs-wrapper .blogs-wrapper-item .blogs-wrapper-item-description {
  color: #09295d;

  font-size: 24px;

  line-height: 1.3;

  display: -webkit-box;

  -webkit-line-clamp: 3;

  -webkit-box-orient: vertical;

  overflow: hidden;
}

.blogs-wrapper .blogs-wrapper-item img {
  width: 100%;
  height: 520px;
  object-fit: contain;
  object-position: center;

  margin-top: 40px;
  margin-bottom: 80px;
  display: block;
}


.blogs-wrapper .blogs-wrapper-item .blogs-wrapper-item-button {
  transition: 0.4s;
  background: #b4c1d6;
  width: fit-content;
  padding: 20px;
  color: #0c368f;
  font-size: 24px;
  font-weight: bold;
}

.blogs-wrapper .blogs-wrapper-item .blogs-wrapper-item-button:hover {
  background: #0c368f;
  color: white;
}

@media only screen and (max-width: 1366px) {
  .blogs-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .homepage-services-title h3 {
    max-width: 600px;
    font-size: 35px;
  }

  .blogs-wrapper .blogs-wrapper-item:nth-child(2n) {
    border-right: unset;
  }

  .blogs-wrapper .blogs-wrapper-item:nth-child(3n) {
    border-right: 1px solid #ffffffcc;
  }
}

@media only screen and (max-width: 1024px) {
  .homepage-services-title h3 {
    max-width: 100%;
    font-size: 21px;
    line-height: 1.4;
  }

  .homepage-services-title {
    margin-left: 14px;
    margin-right: 14px;
    flex-direction: column;
  }

  .homepage-services-section .blogs-wrapper.services-blogs-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .blogs-wrapper .blogs-wrapper-item .blogs-wrapper-item-button {
    padding: 10px;
    font-size: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .homepage-services-title h3 {
    max-width: 100%;
    font-size: 20px;
    line-height: 1.4;
  }
}

@media only screen and (max-width: 767px) {
  .blogs-wrapper {
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 40px;
  }

  .homepage-services-title {
    flex-direction: column;
  }

  .homepage-services-title h3 {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.4;
  }

  .blogs-wrapper .blogs-wrapper-item {
    border-right: unset !important;
  }

  .blogs-wrapper .blogs-wrapper-item .blogs-wrapper-item-title {
    font-size: 22px;
    min-height: unset;
  }

  .blogs-wrapper .blogs-wrapper-item .blogs-wrapper-item-description {
    font-size: 18px;
  }

  .blogs-wrapper .blogs-wrapper-item img {
    margin-top: 0;
    margin-bottom: 0;
  }

  .blogs-wrapper .blogs-wrapper-item .blogs-wrapper-item-button {
    font-size: 18px;
  }
}

/* Blogs Wrapper End */

/* Blog Detail Wrapper Start */
.blog-detail-wrapper {
  max-width: 1366px;

  padding: 0px 33px;

  margin: 0 auto;
}

.blog-detail-wrapper h2 {
  font-size: 60px;

  font-weight: 700;

  width: 95%;

  margin-bottom: 36px;

  color: #091057;
}

.blog-detail-wrapper .blog-detail-wrapper-green-text:before {
  content: "";
  width: 12px;
  height: 100%;
  position: absolute;
  left: 0;
  background: #00a93c;
  top: 0;
}

.blog-detail-wrapper .blog-detail-wrapper-green-text {
  color: #091057;

  padding-left: 36px;

  display: block;

  position: relative;

  font-size: 34px;

  font-weight: bold;

  line-height: 1.2;

  padding-top: 10px;

  padding-bottom: 10px;

  margin-bottom: 74px;
}

.page-header.blog-detail-page-header .page-header-box {
  margin-left: 0;
}

.blog-detail-wrapper .blog-detail-wrapper-text {
  color: #3a4079;

  font-weight: 400;

  font-size: 30px;

  line-height: 44px;

  margin-bottom: 80px;

  display: block;
}

.blog-detail-wrapper .blog-detail-wrapper-image {
  object-fit: contain;
  margin-bottom: 100px;
  height: 650px;
  width: 100%;
  border-radius: 20px;
}

@media only screen and (max-width: 1023px) {
  section.page-header.blog-detail-page-header .page-header-box {
    margin-left: 0;
  }

  .blog-detail-wrapper h2 {
    font-size: 24px;
    width: 100%;
  }

  .blog-detail-wrapper .blog-detail-wrapper-green-text {
    font-size: 20px;
    margin-bottom: 50px;
    line-height: 1.3;
  }

  .blog-detail-wrapper .blog-detail-wrapper-text {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 40px;
  }

  .blog-detail-wrapper .blog-detail-wrapper-image {
    height: 300px;
    margin-bottom: 40px;
  }

  .page-header .page-header-box {
    margin-top: 40px;
    margin-bottom: 40px;
    margin-left: 24px;
  }

  .page-header .page-header-box h1 {
    font-size: 20px;
  }

  .blog-detail-wrapper {
    padding: 0 24px;
  }
}

/* Blog Detail Wrapper End */

/* Carrer Start */
/* Career */
.career .career-hero {
  height: 100vh;
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.3) 100%),
    url(<path-to-image>), lightgray 50% / cover no-repeat;
  position: relative;
}

.career .career-hero:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.3) 100%);
}

.career .career-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.career .career-hero .career-title {
  font-size: 70px;
  font-weight: 700;
  color: #fff;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  max-width: 700px;
  line-height: 1.3;
}

.career .career-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}

.career .career-list>span {
  font-size: 40px;
  display: block;
  text-align: center;
  color: #0c367c;
  line-height: 1.3;
  margin-bottom: 30px;
}

.career .career-list>span.carrer-list-custom-title {
  font-size: 70px;
  font-weight: bold;
  width: 70%;
  text-align: center;
  margin: 0 auto;
}

.career .career-list .list-item {
  padding: 60px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #fff;
  text-decoration: none;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  will-change: transform;
}

.career .career-list .list-item:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(32, 71, 127, 0.3);
}

.career .career-list .list-item .list-item-content>span {
  transition: color 0.3s ease;
}

.career .career-list .list-item:hover .list-item-content>span {
  color: #16335c;
}


.career .career-list .list-item .list-item-content {
  flex: 0.9;
  overflow: hidden;
}

.career .career-list .list-item .list-item-content>span {
  display: block;
  color: #20477f;
  font-size: 40px;
  font-weight: 700;
}

.career .career-list .list-item .list-item-content ul {
  margin-top: 20px;
  display: flex;
  list-style: none;
  gap: 30px;
}

.career .career-list .list-item .list-item-content ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.5;
  justify-content: center;
}

.career .career-list .list-item .list-item-content ul li span {
  color: #000;
  font-size: 15px;
  line-height: 1;
}

.career .career-list .list-item .list-item-content ul li span p {
  margin-bottom: 0;
}

.career .career-list .list-item .list-item-btn {
  width: 90px;
  min-width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #20477f;
  border-radius: 100%;
}

.career-list.first {
  margin-bottom: 180px;
}

@media (max-width: 1470px) {
  .career .career-hero .career-title {
    font-size: 50px;
    max-width: 500px;
    top: 50%;
  }

  .career .career-list {
    gap: 60px;
    padding: 80px 80px 130px;
    max-width: 90%;
  }

  .career .career-list>span {
    font-size: 32px;
  }

  .career .career-list .list-item .list-item-content>span {
    font-size: 30px;
  }

  .career .career-list .list-item .list-item-btn {
    width: 80px;
    min-width: 80px;
    height: 80px;
  }
}

@media (max-width: 1199px) {
  .career .career-list {
    max-width: 100%;
  }

  .career .career-list>span.carrer-list-custom-title {
    font-size: 50px;
    font-weight: bold;
    width: 70%;
    text-align: center;
    margin: 0 auto;
  }
}

@media (max-width: 991px) {
  .career .career-hero .career-title {
    font-size: 40px;
  }

  .career .career-list {
    padding: 45px;
    gap: 30px;
    padding-top: 0 !important;
  }

  .career .career-list>span.carrer-list-custom-title {
    font-size: 24px;
    font-weight: bold;
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .career-list.first {
    margin-bottom: 40px;
  }

  .career .career-list>span {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .career .career-list .list-item {
    padding: 30px 30px;
  }

  .career .career-list .list-item .list-item-content>span {
    font-size: 24px;
  }

  .career .career-list .list-item .list-item-content ul {
    margin-top: 15px;
    gap: 20px;
  }

  .career .career-list .list-item .list-item-btn {
    width: 60px;
    min-width: 60px;
    height: 60px;
  }

  .career .career-list .list-item .list-item-btn svg {
    width: 60%;
  }

  .career .career-hero {
    height: 80vh;
  }
}

@media (max-width: 767px) {
  .career .career-hero .career-title {
    font-size: 27px;
    max-width: 70%;
    top: 36%;
  }

  .career .career-list {
    padding: 35px 24px 50px;
    gap: 24px;
  }

  .career .career-list>span {
    font-size: 20px;
    max-width: 90%;
    margin: 0 auto 5px;
  }

  .career .career-list .list-item {
    display: block;
    padding: 24px;
  }

  .career .career-list .list-item .list-item-btn {
    width: 50px;
    margin-top: 20px;
    height: 50px;
    width: 50px;
    min-width: 50px;
    display: none;
  }

  .career .career-list .list-item .list-item-content>span {
    font-size: 20px;
  }

  .career .career-list .list-item .list-item-content ul li svg {
    height: auto;
    width: 16px;
  }

  .career .career-list .list-item .list-item-content ul li {
    gap: 6px;
  }

  .career .career-list .list-item .list-item-content ul {
    gap: 15px;
  }

  .career .career-hero {
    height: 140vw;
  }
}

/* Career Detail */
.career .item-form .item-form-body form .form-row .captcha input {
  height: 100%;
  font-size: 15px;
  font-weight: 300;
  color: #40456a;
  padding: 0 25px;
  border: 1px solid #e4e4e8;
  border-radius: 100px;
  width: 100%;
}

.career .item-form .item-form-body form .form-row .captcha img {
  height: 100%;
}

.career .item-form {
  text-align: center;
}

.career .item-form .item-form-body {
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
}

.career .item-form .item-form-header {
  gap: 23px;
  margin-bottom: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.career .item-form .item-form-header>span {
  font-weight: 500;
  font-size: 25px;
  color: #000;
}

.career .item-form .item-form-header span span {
  color: #009ed8;
}

.career .item-form .item-form-body form .form-group {
  position: relative;
}

.career .item-form .item-form-body form .form-group .custom-file {
  height: 65px;
  margin-bottom: 25px;
  position: relative;
  font-weight: 300;
  font-size: 15px;
  color: #40456a;
}

.career .item-form .item-form-body form .form-group .custom-file .custom-file-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

.career .item-form .item-form-body form .form-group .custom-file .custom-file-label:hover {
  border-color: #00497c;
}

.career .item-form .item-form-body form .form-group .custom-file .custom-file-label {
  border: 1px solid #e4e4e8;
  border-radius: 100px;
  height: 100%;
  padding: 0 175px 0 25px;
  font-weight: 300;
  font-size: 15px;
  color: #40456a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  transition: 0.4s;
  background: white;
}

.career .item-form .item-form-body form .form-group .input-group-prepend {
  font-weight: bold;
  font-size: 15px;
  color: #40456a;
  height: 45px;
  border-radius: 100px;
  background: #fafafa;
  padding: 0 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 13px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0px, -50%);
  transform: translate(0px, -76%);
  right: 10px;
  pointer-events: none;
  text-transform: uppercase;
}

.career .item-form .item-form-body form .form-row .checkbox-item {
  position: relative;
  margin-right: 32px;
  display: flex;
  opacity: 0.7;
}

.career .item-form .item-form-body form .form-row .checkbox-item input {
  position: absolute;
  top: 6px;
  left: 5px;
  opacity: 0;
}

.career .item-form .item-form-body form .form-row .checkbox-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  padding-left: 5px;
}

.career .item-form .item-form-body form .form-row .checkbox-item label:before {
  content: "";
  display: block;
  width: 20px;
  min-width: 20px;
  height: 20px;
  background: #ffff;
  border: 1px solid #00497c;
  margin-right: 12px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.career .item-form .item-form-body form .form-row .checkbox-item input:checked~label:before {
  background: #00497c;
}

.career .item-form .item-form-body form .form-row .checkbox-item p {
  font-size: 15px;
  color: #576c7c;
  margin: 0;
  font-weight: 400;
}

.career .item-form .item-form-body form .form-row .checkbox-item p a {
  color: #00497c;
  text-decoration: none;
}

.career .item-form .item-form-body form .form-row+.form-row {
  margin-top: 24px;
}

.career .item-form .item-form-body form .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.career .item-form .item-form-body form .form-row button {
  width: 175px;
  height: 60px;
  border-radius: 100px;
  background: #00497c;
  font-weight: bold;
  font-size: 15px;
  text-align: left;
  color: #fff;
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.4s;
}

.career .item-form .item-form-body form .form-row .col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  border-radius: 100px;
}

.career .item-form .item-form-body form .form-row .col.captcha {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 190px;
  flex: 0 0 190px;
  height: 65px;
}

.career .item-form .item-form-body form .form-row .col.captcha img {
  height: 100%;
}

.career .item-form .item-form-body form .form-row .col .form-control {
  width: 100%;
  height: 65px;
  border-radius: 100px;
  border: 1px solid #e4e4e8;
  font-weight: 300;
  font-size: 15px;
  color: #40456a;
  padding: 0 25px;
  outline: none;
}

.item-form {
  background: white;
  padding: 84px 0;
  margin-bottom: 113px;
}

.career .item-form .item-form-body form .form-row .col .form-control:focus {
  border-color: #00497c;
}

label.custom-file-label {}

.career .item-form .item-form-body form .form-row button:hover {
  background: white;
  color: #00497c;
  border: 1px solid #00497c;
}

.career .item-form .item-form-body form .form-row button:hover svg path {
  stroke: #00497c;
}

.career .item-form .item-form-body form .form-row .col .form-control::-webkit-input-placeholder {
  color: #40456a;
}

.career .item-form .item-form-body form .form-row .col .form-control::-moz-placeholder {
  color: #40456a;
}

.career .item-form .item-form-body form .form-row .col .form-control:-ms-input-placeholder {
  color: #40456a;
}

.career .item-form .item-form-body form .form-row .col .form-control::-ms-input-placeholder {
  color: #40456a;
}

.career .item-form .item-form-body form .form-row .col .form-control::placeholder {
  color: #40456a;
}

.career .item-form .item-form-body form .form-row .col .form-control::-webkit-input-placeholder {
  color: #40456a;
}

@media (max-width: 991px) {
  .career .item-form {
    left: 6vw;
    right: 6vw;
    padding: 24px;
    margin-bottom: 30px;
  }

  .career .item-form .item-form-body form .form-group .input-group-prepend {
    display: none;
  }

  .career .item-form .item-form-body form .form-row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .career .item-form .item-form-body form .form-row .col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .career .item-form .item-form-body form .form-row .col.captcha {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 7px);
    flex: 0 0 calc(50% - 7px);
  }

  .career .item-form .item-form-body form .form-row+.form-row {
    margin-top: 24px;
  }

  .career .item-form .item-form-body form .form-row button {
    margin-top: 13px;
    height: 50px;
  }
}

@media (max-width: 767px) {
  .career .item-form .item-form-header>span {
    font-size: 20px;
  }

  .career .item-form {
    padding: 20px 12px;
    margin-bottom: 30px;
  }

  .career .item-form .item-form-header svg {
    height: auto;
    width: 30px;
    margin-top: 4px;
  }

  .career .item-form .item-form-header {
    gap: 16px;
    margin-bottom: 30px;
  }

  .career .item-form .item-form-body form .form-row .captcha input {
    padding: 0 15px;
  }

  .career .item-form .item-form-body form .form-row .col .form-control {
    height: 55px;
  }

  .career .item-form .item-form-body form .form-row .col.captcha {
    height: 55px;
  }

  .captcha a {
    right: 5px;
    width: 16px;
    height: 16px;
  }

  .career .item-form .item-form-body form .form-group .custom-file {
    margin-bottom: 13px;
    height: 55px;
  }

  .career .item-form .item-form-body form .form-row .captcha {
    flex: 0 0 calc(50% - 4px);
  }

  .career .item-form .item-form-body form .form-row {
    gap: 12px 7px;
  }
}

/* Carrer End */

/* Certificate Wrapper End */

.captcha {
  position: relative;
}

.captcha img {
  width: 100%;
  height: 64px;
  border: 1px solid #f1f1f1;
  border-radius: 0.25rem;
}

.contact-title-area {
  position: absolute;
}

.contact-title-area .contact-hero-title {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 88px;
  font-weight: 500;
  line-height: 1.14;
  margin: 97px 0 0 100px;

}

.contact-top {
  position: relative;
}

.contact-top:before {
  content: "";
  background: linear-gradient(180deg, rgba(12, 54, 124, 0) 66.61%, #0c367c 100%),
    linear-gradient(0deg, rgba(12, 54, 124, 0.5), rgba(12, 54, 124, 0.5));
  position: absolute;
  inset: 0;
}

.contact-page-bottom {
  width: 80%;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  justify-content: space-evenly;
  padding: 115px 0 120px;
  margin-top: -100px;
  z-index: 2;
  position: relative;
  background: #e7ebf2;
  align-items: start;
}

.contact-form {
  width: 100%;
}

.contact-form h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 300;
  color: #0a2b63;
  margin-bottom: 40px;
}

/* FORM GENEL */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  height: 64px;
  padding: 0 20px;
  border: 1px solid #5c76a9;
  background: #ffffff;
  font-size: 16px;
  color: #000;
  outline: none;
  transition: all 0.25s ease;
}

.form-group textarea {
  height: 160px;
  padding: 20px;
  resize: none;
}

/* PLACEHOLDER */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b4c1d6;
}

/* HOVER */
.form-group input:hover,
.form-group textarea:hover {
  border-color: #0a2b63;
}

/* FOCUS */
.form-group input:focus,
.form-group textarea:focus {
  border-color: #0a2b63;
  box-shadow: 0 0 0 2px rgba(10, 43, 99, 0.15);
}

/* DISABLED */
.form-group input:disabled {
  background: #dbe1eb;
  color: #0a2b63;
  cursor: not-allowed;
}

/* ALT ALAN */
.form-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: -10px;
}

/* CAPTCHA KOD */
.captcha-code {
  height: 64px;
  background: #dbe1eb;
  border: none;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #0a2b63;
}

/* CAPTCHA INPUT */
.captcha-input {
  height: 64px;
  border: 1px solid #5c76a9;
  padding: 0 20px;
  font-size: 16px;
}

/* GÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œNDER BUTONU */
.submit-btn {
  height: 64px;
  background: #0a2b63;
  color: #ffffff;
  border: none;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s ease;
}

/* BUTTON HOVER */
.submit-btn:hover {
  background: #061c42;
}

/* BUTTON ACTIVE */
.submit-btn:active {
  transform: scale(0.97);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .form-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .contact-form h2 {
    font-size: 24px;
  }

  .form-group input,
  .form-group textarea,
  .captcha-code,
  .captcha-input,
  .submit-btn {
    height: 56px;
  }
}


.contact-left {
  display: flex;
  flex-direction: column;
  gap: 95px;
  margin-top: 90px;
}

.contact-right {
  flex: .6;
}

.contact-left .contact-bottom-item {
  display: flex;
  flex-direction: column;
  gap: 27px;
  align-items: start;
}

.contact-page-bottom span {
  color: #04132b;
  font-size: 32px;
  font-weight: 300;
}

.contact-left .contact-bottom-item a {
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: center;
}

@media (max-width: 1500px) {
  .contact-page-bottom span {
    font-size: 24px;
  }

  .contact-page-bottom {
    width: 85%;
  }
}

@media (max-width: 1200px) {
  .contact-page-bottom {
    width: 90%;
    padding: 70px 0 100px;
  }

  .contact-page-bottom span {
    font-size: 18px;
  }

  .contact-left .contact-bottom-item a {
    gap: 15px;
  }

  .contact-left {
    gap: 30px;
    margin-top: 0;
  }

}

@media (max-width: 1023px) {
  .contact-page-bottom {
    width: 100%;
    padding: 70px 0 100px;
    flex-direction: row;
    padding: 4vw;
  }

  .contact-left,
  .contact-right {
    width: 100%;
    margin-left: 40px;
    margin-right: 40px;
  }

  .contact-left {
    margin-top: 50px;
  }

  .contact-form h2 {
    text-align: center;
    margin-bottom: 5px;
  }


  .contact-page-bottom .form-group {
    margin-bottom: 0;
  }

  .contact-page-bottom .form-group input,
  .form-group textarea {
    height: 40px;
  }

  .contact-page-bottom .form-group textarea {
    height: 55px;
  }


  .contact-page-bottom .form-bottom {
    margin-top: 0;
    display: flex;
    margin-bottom: 0;
  }

  .contact-page-bottom .form-bottom .captcha-code {
    height: 44px;
  }

  .contact-page-bottom .form-bottom .captcha-input {
    height: 44px;
  }

  .contact-page-bottom .form-bottom .submit-btn {
    width: 100%;
    height: 50px;
  }


  .contact-left .contact-bottom-item a {
    gap: 10px;

  }

  .contact-form form {
    gap: 16px;
  }

  .map-responsive {
    height: 450px;
  }

  .map-responsive iframe {
    height: 450px;
  }
}

@media (max-width: 767px) {
  .contact-page-bottom {
    flex-direction: column;
    margin-top: -150px;
    padding: 0px 24px;
    width: 100%;
  }

  .contact-form form {
    gap: 12px;
  }

  .contact-left,
  .contact-right {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .contact-left {
    margin-bottom: 30px;
    margin-top: 30px;
  }

  .contact-right {
    margin-bottom: 30px;
  }

  .contact-page-bottom .form-bottom .captcha-input {
    width: 100%;
  }

  .contact-left .contact-bottom-item a svg {
    width: 24px;
    height: 24px;
  }

  .contact-left .contact-bottom-item {
    align-items: start;
    justify-content: start;
    gap: 10px;
    width: 100%;
    border-bottom: 1px solid gray;
    padding-bottom: 20px;
  }

  .contact-form h2 {
    margin-bottom: 20px;
  }

  .form-bottom {
    margin-top: 0;
  }

  .map-responsive {
    height: 400px;
  }

  .map-responsive iframe {
    height: 400px;
  }
}

/* About */
.about-wrapper {
  background: #e7ebf2;
}

.about-wrapper .about-hero {
  position: relative;
  height: 56vw;
  overflow: hidden;
  max-height: 690px !important;
  background: #0a2b63;
}

.about-wrapper .about-hero-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a2b63;
  transition: opacity 0.4s ease;
}

.about-wrapper .about-hero-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.about-wrapper .about-hero-placeholder.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.about-wrapper .about-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.about-wrapper .about-hero-video.is-visible {
  opacity: 1;
  visibility: visible;
}

.about-wrapper .about-hero-video iframe {
  width: 100%;
  height: 100%;
  pointer-events: none;
  border: 0;
}

.about-wrapper .about-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 54, 124, 0) 0%, #0c367c 100%),
    linear-gradient(0deg, rgba(12, 54, 124, 0.5), rgba(12, 54, 124, 0.5));
  z-index: 1;
}

.about-wrapper .about-hero-title {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 88px;
  font-weight: 500;
  line-height: 1.14;
  margin: 97px 0 0 100px;
}

.about-wrapper .about-hero-play {
  position: absolute;
  right: 10%;
  top: 15%;
  transform: translateY(-15%);
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.3s ease;
}

.about-wrapper .about-hero-play:hover {
  transform: translateY(-50%) scale(1.05);
}

.about-wrapper .about-hero-play.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.about-wrapper .about-hero-play svg circle {
  transition: opacity 0.3s ease;
}

.about-wrapper .about-hero-play:hover svg circle {
  opacity: 0.8;
}

.about-wrapper .about-container {
  margin: 0 auto;
  padding: 0 5vw 120px;
  position: relative;
  margin-top: -200px;
}

.about-wrapper .about-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  gap: 12px;
  height: 100%;
  position: relative;
}

.about-wrapper .about-card {
  background: #dbe1eb;
  border: 1px solid #b4c1d6;
  padding: 120px 3.3vw 120px 5vw;
  z-index: 2;
}

.about-wrapper .about-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  background: #b4c1d6;
  padding: 13px 20px;
  margin-bottom: 24px;
}

.about-wrapper .about-section-tag .dot {
  width: 16px;
  height: 16px;
  background: #04132b;
}

.about-wrapper .about-section-tag span {
  color: #04132b;
  font-size: 24px;
  line-height: 24px;
}

.about-wrapper .about-title {
  color: #0a2b63;
  font-size: 2.8vw;
  font-weight: 600;
  line-height: 1.4;
  margin: 12px 0 22px;
}

.about-wrapper .about-wrapper-text {
  color: #0c367c;
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.about-wrapper .about-media {
  position: relative;
  margin-top: auto;
  margin-left: 90px;
  margin-top: 70%;
}

.about-wrapper .about-media-inner {
  border: 1px solid #b4c1d6;
  background: #d9d9d9;
}

.about-wrapper .about-media-inner img {
  width: 100%;
  height: 810px;
  display: block;
  object-fit: cover;
}

.about-wrapper .about-media-cta {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 7.5vw;
  height: 7.5vw;
  background: #0c367c;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translate(-50%, 50%);
}

.about-wrapper .about-media-cta svg {
  display: block;
  width: 3vw;
  height: 3vw;
  transform: rotate(-45deg);
}

.about-wrapper .about-gallery {
  margin-top: 0px;
}

.about-wrapper .about-gallery-title {
  color: #0a2b63;
  font-size: 88px;
  font-weight: 500;
  line-height: 1.14;
  margin: 0 80px 80px;
}

.about-wrapper .about-gallery-slider {
  position: relative;
  width: 100%;
}

.about-wrapper .about-gallery-swiper {
  width: 100%;
  overflow: hidden;
}

.about-wrapper .about-gallery-swiper .swiper-slide img {
  width: 100%;
  height: 30vw;
  object-fit: cover;
  border: 1px solid #b4c1d6;
}

.about-wrapper .about-gallery-slide--bw img,
.about-wrapper .about-gallery-slide--bw-visible img {
  filter: grayscale(100%);
}

.about-gallery-bottom {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 100px 100px;
}

.about-gallery-index {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: #0a2b63;
}

.about-gallery-index-current {
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
}

.about-gallery-index-total {
  font-size: 24px;
  line-height: 1;
  opacity: 0.9;
}

.about-gallery-nav {
  display: inline-flex;
  gap: 13px;
}

.about-gallery-nav-btn {
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  border: 1px solid #0a2b63;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.about-wrapper .about-gallery-nav-btn svg {
  transition: transform 0.3s ease;
}

.about-wrapper .about-gallery-nav-btn:hover {
  background: #0c2f73;
}

.about-wrapper .about-gallery-nav-btn:hover svg {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1500px) {
  .about-wrapper .about-media {
    margin-top: 160%;
  }

  .about-wrapper .about-media-inner img {
    height: 600px;
  }
}

@media (max-width: 1199px) {
  .about-wrapper .about-media {
    display: none;
  }

  .about-wrapper .about-hero-title {
    margin-left: 60px;
    font-size: 64px;
  }

  .about-wrapper .about-hero-play {
    right: 6%;
  }

  .about-wrapper .about-container {
    padding: 0 24px 80px;
    margin-top: -80px;
  }

  .about-wrapper .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-wrapper .about-title {
    font-size: 32px;
  }

  .about-wrapper .about-gallery-title {
    font-size: 56px;
  }
}

@media (max-width: 767px) {
  .about-wrapper .about-hero {
    min-height: 50vw;
  }

  .about-wrapper .about-hero-title {
    margin: 40px 0 0 24px;
    font-size: 32px;
  }

  .about-wrapper .about-card {
    padding: 30px 15px;
  }

  .about-wrapper .about-gallery {
    margin-top: 30px;
  }

  .about-gallery-bottom {
    padding: 24px;
  }

  .about-gallery-index-current {
    font-size: 30px;
  }

  .about-wrapper .about-hero-play svg {
    width: 50px;
    height: 50px;
  }

  .about-wrapper .about-container {
    padding: 0 16px 50px;
    margin-top: 20px;
  }

  .about-wrapper .about-hero-play {
    right: 24px;
    top: auto;
    bottom: 24px;
    transform: none;
  }

  .about-wrapper .about-section-tag span {
    font-size: 18px;
  }

  .about-wrapper .about-title {
    font-size: 22px;
  }

  .about-wrapper .about-wrapper-text {
    font-size: 15px;
  }

  .about-wrapper .about-gallery-title {
    font-size: 32px;
    margin: 24px;
  }

  .about-wrapper .about-gallery-swiper .swiper-slide img {
    height: 360px;
  }

  .about-wrapper .about-gallery-swiper .swiper-slide img {
    height: 280px;
  }

  .about-wrapper .about-gallery-nav-btn {
    width: 48px;
    height: 48px;
  }
}

/* Product Groups Page */
.product-wrapper {
  background: #e7ebf2;
  padding: 0 0 50px;
}

.product-wrapper-body {
  margin: 0 auto;
  padding: 0 57px 0 57px;
}

.product-filter-section ul {
  padding: 0px 36px 0 50px;
}

.product-wrapper-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 32px;
  padding-left: 104px;
  padding-right: 57px;
  padding-top: 72px;
}

.product-wrapper-header h1 {
  color: #0a2b63;
  font-size: 32px;
  font-weight: 600;
  margin: 0;
}

.product-wrapper-header-right {
  display: flex;
  align-items: baseline;
  gap: 24px;
  color: #0a2b63;
  font-size: 32px;
  font-weight: 700;
}

.product-wrapper-header-count {
  font-size: 32px;
  font-weight: 400;
  color: #b4c1d6;
}

.product-wrapper-body {
  display: flex;
  gap: 42px;
  padding-top: 48px;
}

.product-filters {
  width: 420px;
  background: #dbe1eb;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: fit-content;
  position: sticky;
  top: 50px;
}

.product-filter-section+.product-filter-section {
  border-top: 1px solid rgba(4, 19, 43, 0.15);
}

.product-filter-header {
  width: 100%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 30px 24px 50px;

  cursor: pointer;
}



.product-filter-header svg {
  transition: transform 0.3s ease;
}

.product-filter-section.open .product-filter-header svg {
  transform: rotate(180deg);
}

.product-filter-section-title {
  color: #0a2b63;
  font-size: 20px;
  font-weight: 600;
}

.product-filter-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.product-filter-section.open .product-filter-body {
  padding-bottom: 24px;
}

.product-filter-item {
  list-style: none;
}

.product-filter-item+.product-filter-item {
  margin-top: 16px;
}

.product-filter-item label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #0a2b63;
  font-size: 16px;
  cursor: pointer;
}

.product-filter-checkbox {
  width: 18px;
  height: 18px;
  border: 1px solid #0a2b63;
  border-radius: 3px;
  background: transparent;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.product-filter-checkbox.active {
  background: #0c367c;
  border-color: #0c367c;
  box-shadow: inset 0 0 0 1px #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 8px;
  flex: 1;
  height: fit-content;
}

.product-grid-wrapper {
  flex: 1;
}

.product-card {
  background: #fff;
  border: 1px solid #d5dcea;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: auto;
}

.product-card-label {
  background: #dbe1eb;
  color: #0c367c;
  font-size: 16px;
  font-weight: 700;
  padding: 8px 15.7px;
  border-radius: 2px;
  width: fit-content;
  text-transform: uppercase;
  margin-left: 33px;
  margin-right: 33px;
  min-height: 64px;
  display: flex;
  align-items: center;
}

.product-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-image img {
  width: 100%;
  height: 317px;
  object-fit: contain;
}

.product-card-title {
  font-size: 21px;
  color: #041337;
  line-height: 1.4;
  margin: 0;
  min-height: 98px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
  padding: 0 33px;
}

.product-card-title a {
   color: #041337;
}

.header-search-card .product-card-image img {
  height: 280px;
}

.header-search-card .product-card-button {
  padding: 16px 20px;
}

.header-search-card .product-card-title {
  font-size: 1.8rem;
  min-height: 70px;
}

.product-card-button {
  margin-top: auto;
  background: #0c367c;
  color: #fff !important;
  border: none;
  padding: 20px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 24px;
  cursor: pointer;
  margin-top: 16px;
  margin: auto 33px 33px;
}

.product-card-button:hover svg {
  transform: rotate(45deg);
}

.product-card-button:hover span {
  color: white;
}

.product-card-button svg {
  display: block;
  transition: 0.4s;
}

.product-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
  padding-top: 38px;
}

.product-pagination-btn {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: 1px solid #b4c1d6;
  background: #fff;
  color: #0c367c;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-pagination-btn:hover:not(:disabled) {
  background: #0c367c;
  color: #fff;
  border-color: #0c367c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(12, 54, 124, 0.25);
}

.product-pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.product-pagination-btn svg {
  width: 20px;
  height: 20px;
}

.product-pagination-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-pagination-number {
  min-width: 48px;
  height: 48px;
  border-radius: 8px;
  border: 1px solid #b4c1d6;
  background: #fff;
  color: #0a2b63;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-pagination-number:hover {
  background: rgba(12, 54, 124, 0.1);
  border-color: #0c367c;
  color: #0c367c;
  transform: translateY(-2px);
}

.product-pagination-number.active {
  background: #0c367c;
  color: #fff;
  border-color: #0c367c;
  font-weight: 600;
}

.product-pagination-number.active:hover {
  background: #0f3f86;
  border-color: #0f3f86;
  transform: translateY(-2px);
}



.product-wrapper>.row {
  margin: 0;
}

.product-wrapper ul.pagination {
  padding-left: 15%;
}

@media (max-width: 1600px) {
  .product-card-title {
    font-size: 25px;
  }

  .product-card-button {
    font-size: 20px;
  }

  .product-filters {
    width: 370px;
  }
}

@media (max-width: 1300px) {

  .product-wrapper-header,
  .product-wrapper-body {
    padding-top: 30px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1023px) {
  .product-wrapper-body {
    flex-direction: column;
    margin-top: 0;
    padding-right: 24px;
    padding-left: 24px;
  }

  .product-filters {
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    position: unset;
  }

  .product-filter-section {
    flex: 1 1 0;
  }

  .product-card-title {
    font-size: 16px;
    min-height: unset;
  }

  .product-card-button {
    font-size: 20px;
  }

  .product-wrapper ul.pagination {
    padding-left: 0;
    max-width: 100%;
    flex-wrap: wrap;
    gap: 10px;
  }

  .product-wrapper-header {
    align-items: center;
    padding-left: 24px;
    padding-top: 20px;
    padding-bottom: 0;
  }

  .product-filter-header {
    padding-bottom: 0;
    padding-left: 24px;
  }

  .product-filters>*:last-child {
    padding-bottom: 20px;
  }

  .product-wrapper-header-count {
    font-size: 24px;
  }

  .product-wrapper-header-right {
    font-size: 24px;
  }

  .product-wrapper-header h1 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .product-wrapper {
    padding: 20px 0;
  }

  .product-wrapper-header,
  .product-wrapper-body {
    padding: 0 12px;
  }

  .product-wrapper-header {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
  }

  .product-wrapper-header h1 {
    font-size: 24px;
  }

  .product-wrapper-header-right {
    font-size: 24px;
  }

  .product-wrapper-header-count {
    font-size: 14px;
  }

  .product-wrapper-header-right span:first-child {
    display: none;
  }

  .product-filter-section-title {
    padding-left: 15px;
    padding-bottom: 0;
    padding-top: 0;
  }

  .product-filter-section ul {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 24px;
  }

  .product-card-image img {
    height: 250px;
  }

  .product-card-label {
    font-size: 14px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .product-card-button {
    margin-left: 20px;
    margin-right: 20px;
    font-size: 17px;
    padding: 13px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card-title {
    min-height: unset;
    font-size: 22px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .product-filters {
    flex-direction: column;
    position: unset;
    gap: 0;
  }

  .product-pagination {
    margin-top: 0;
    padding-top: 32px;
    gap: 8px;
  }

  .product-pagination-btn {
    width: 40px;
    height: 40px;
  }

  .product-pagination-btn svg {
    width: 18px;
    height: 18px;
  }

  .product-pagination-numbers {
    gap: 6px;
  }

  .product-pagination-number {
    min-width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .product-filter-header {
    padding-right: 12px;
    padding-left: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .product-filter-section:last-child .product-filter-header {
    padding-bottom:0;
  }

  .product-filter-section+.product-filter-section {
    padding-top: 0;
  }
}

/* Product Detail Page */
.product-detail-wrapper {
  background: #e7ebf2;
  padding: 0 0;
  overflow: hidden;
}

.product-detail-breadcrumb {
  margin: 0 auto 0;
  padding: 0 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0c367c;
}

.product-detail-breadcrumb a,
.product-detail-breadcrumb span {
  transition: 0.4s;
  color: #04132b;
  font-size: 24px;
  display: inline-flex !important;
  align-items: center !important;
  white-space: nowrap !important;
  height: 100%;
}

.product-detail-media-file:hover {
  background: white;
  color: #0c367c;
}

.product-detail-primary-button:hover {
  background: white;
  color: #0c36a5;
}

.about-gallery-bottom button:hover {
  background: #0c36a5;
}

.about-gallery-bottom button:hover svg path {
  fill: white;
}

.product-detail-breadcrumb a:hover {
  color: #0c36a5;
}

.product-detail-breadcrumb-left {
  border-right: 1px solid #dbe1eb;
  height: 100%;
  padding-right: 100px;
  margin-right: 70px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.product-detail-breadcrumb-left span {
  font-size: 32px;
  font-weight: bold;
}

.product-detail-main {
  margin: 0 auto 110px;
  padding: 0 9vw 0 70px;
  display: flex;
  gap: 4.5vw;
  border-bottom: 1px solid #dbe1eb;
  border-top: 1px solid #dbe1eb;
}

.product-detail-media {
  display: flex;
  gap: 24px;
  margin-top: 70px;
}

.product-detail-media-files {
  width: 170px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-detail-media-file {
  border: 1px solid #b4c1d6;
  padding: 20px 16px;
  text-align: center;
  font-weight: 600;
  color: #0c367c;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  gap: 10px;
}

.product-detail-media-visual {
  width: 29vw;
  min-width: 450px;
  height: 31.5vw;
  min-height: 520px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: unset;
}

.product-detail-media-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: unset;
}

.product-detail-info {
  padding: 0 0 0 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  border-left: 1px solid #dbe1eb;
  position: relative;
}

.product-detail-chip {
  background: #b4c1d6;
  color: #0c367c;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  width: fit-content;
  text-transform: uppercase;
  margin-top: 70px;
}

.product-detail-info h1 {
  font-size: 50px;
  color: #0a2b63;
  margin: 0;
}

.product-detail-subtitle {
  margin: 0;
  color: #000000;
  font-size: 24px;
  font-weight: 600;
  padding-top: 15px;
}

.product-detail-spec-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #000000;
  font-size: 20px;
}

.product-detail-cta {
  display: flex;
  gap: 18px;
  width: fit-content;
  align-items: stretch;
  margin-top: 16px;
}

.product-detail-primary-button {
  background: #0a2b63;
  color: #fff;
  padding: 16px 54px;
  font-size: 24px;
  border: none;
  font-weight: 600;
  transition: 0.4s;
}

.product-detail-select {
  background: transparent;
  border: 1px solid #0c367c;
  color: #0c367c;
  padding: 16px 18px 16px 41px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex: 1;
  font-weight: 400;
  font-size: 24px;
}

.product-detail-select svg path {
  stroke: #0c367c;
}

.product-detail-select-wrapper {
  position: relative;
  flex: 1;
}

/* BUTON */
.product-detail-select {
  background: transparent;
  border: 1px solid #0c367c;
  color: #0c367c;
  padding: 16px 18px 16px 41px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  font-weight: 400;
  font-size: 24px;
  cursor: pointer;
}

/* OK */
.product-detail-select svg path {
  stroke: #0c367c;
  transition: 0.2s;
}

/* LÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°STE */
.product-detail-options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #0c367c;
  border-radius: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  display: none;
  /* baÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸ta kapalÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± */
  z-index: 50;
}

.product-detail-options li {
  padding: 12px 18px;
  cursor: pointer;
  font-size: 20px;
  border-bottom: 1px solid #eee;
}

.product-detail-options li:last-child {
  border-bottom: none;
}

.product-detail-options li:hover {
  background: #f3f7ff;
}

/* AÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡IK DURUM */
.product-detail-select.open svg {
  transform: rotate(180deg);
}

.product-detail-tabs {
  display: flex;
  gap: 18px;
  padding-top: 64px;
  margin-top: 40px;
  position: relative;
  margin-bottom: 16px;
}

.product-detail-tabs:before {
  content: "";
  background: #dbe1eb;
  height: 1px;
  width: calc(100% + 64px);
  position: absolute;
  top: 0;
  left: -64px;
}

.product-detail-breadcrumb-separator {
  padding: 0 20px !important;
  display: inline-flex !important;
  align-items: center !important;
  flex-shrink: 0 !important;
}

.product-detail-tabs button {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 400;
  padding: 16px 0;
  color: #0a2b63;
  position: relative;
  cursor: pointer;
  background: white;
  padding: 15px 3.5vw;
  outline: unset !important;
}

.product-detail-tabs button.active {
  font-weight: bold;
  border: unset;
}

.product-detail-tab-panels {
  padding-bottom: 20px;
}

.product-detail-tab-panel {
  display: none;
}

.product-detail-tab-panel.active {
  display: block;
}

.product-detail-feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding-left: 24px;
  color: #04132b;
  font-size: 20px;
}

.product-detail-feature-list li {
  list-style-type: disc;
}

.product-detail-gallery {
  margin-bottom: 15px;
}

.product-detail-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-detail-gallery-item {
  background: #f2f5fb;
  padding: 24px;
  border: 1px solid #e0e6f0;
  cursor: pointer;
}

.product-detail-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail-certificate-list {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #04132b;
}

.product-detail-related {
  margin: 0 0 0 70px;
}

.product-detail-related-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.product-detail-related-header h2 {
  font-size: 56px;
  color: #0a2b63;
  margin: 0;
  font-weight: 700;
}

.product-detail-related-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.product-detail-related-count {
  font-size: 28px;
  color: #0a2b63;
  font-weight: 600;
}

.product-detail-related-count span {
  font-size: 18px;
}

.product-detail-related-nav {
  display: flex;
  gap: 12px;
}

.product-detail-related-nav button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #0c367c;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail-related .product-card {
  height: 100%;
}

.product-related-slide.product-related-slide--bw-visible img {
  filter: grayscale(100%);
}

@media (max-width: 1600px) {
  .product-detail-gallery {
    margin-bottom: 15px;
  }

  .product-detail-wrapper {
    padding-bottom: 0;
  }

  .about-gallery-bottom {}

  .product-detail-info {
    padding: 0 0 0 32px;
  }

  .product-detail-main {
    padding-left: 40px;
    padding-right: 50px;
  }

  .product-detail-info h1 {
    font-size: 40px;
  }

  .product-detail-select {
    font-size: 20px;
  }

  .product-detail-primary-button {
    font-size: 20px;
  }

  .product-detail-tabs {
    padding-top: 40px;
    margin-top: 20px;
  }

  .product-detail-tabs {}

  .product-detail-media-file {
    padding: 10px 12px;
  }

  .product-detail-media-files {
    width: 140px;
  }
}

@media (max-width: 1350px) {
  .product-detail-media-visual {
    min-height: 450px;
    min-width: 400px;
  }

  .product-detail-cta {
    width: 100%;
  }

  .product-detail-primary-button {
    width: 50%;
  }

  .product-detail-select-wrapper {
    flex: unset;
    width: 50%;
    text-align: center;
  }

  .product-detail-select {
    justify-content: center;
  }

  .product-detail-tabs,
  .product-detail-tab-panels,
  .product-detail-related {
    padding: 0;
  }

  .product-detail-tabs {
    margin-top: 20px;
    padding-top: 20px;
  }

  .product-detail-info h1 {
    font-size: 35px;
  }

  .product-detail-chip {
    margin-top: 35px;
  }

  .product-detail-media {
    margin-top: 35px;
  }

  .product-detail-breadcrumb-left {
    padding-bottom: 35px;
    margin-right: 35px;
    padding-right: 50px;
    padding-top: 35px;
  }

  .product-detail-related {
    margin-left: 0;
  }

  .about-gallery-bottom {
    padding: 24px 50px;
  }

  .product-detail-main {
    margin-bottom: 50px;
  }
}

@media (max-width: 1300px) {

  .product-detail-main,
  .product-detail-tabs,
  .product-detail-tab-panels,
  .product-detail-related,
  .product-detail-breadcrumb {
    padding: 0px 40px;
  }

  .product-detail-tabs {
    padding-top: 25px;
  }

  .product-detail-main {
    grid-template-columns: 1fr;
  }

  .product-detail-media {
    flex-direction: column;
    margin-top: 10px;
  }

  .product-detail-media-files {
    width: 100%;
    flex-direction: row;
  }

  .product-detail-media-file {
    flex: 1;
  }

  .product-detail-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .product-detail-main {
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px;
    margin-bottom: 50px;
  }

  .about-gallery-bottom {
    padding: 20px 50px 50px;
  }

  .product-detail-wrapper {
    padding-bottom: 50px;
  }

  .product-detail-media-visual {
    margin: unset;
    width: 100%;
  }

  .product-detail-info {
    gap: 15px;
  }

  .product-detail-subtitle {
    padding-top: 5px;
  }

  .product-detail-tab-panels {
    padding: 0;
  }

  .product-detail-tabs {
    padding: 20px 0 0 0;
  }

  .product-detail-related {
    margin-left: 34px;
    padding-left: 0;
  }

  .product-detail-breadcrumb-left {
    padding-bottom: 15px;
    margin-right: 15px;
    padding-right: 25px;
    padding-top: 15px;
  }

  .product-detail-breadcrumb-left span {
    font-size: 24px;
  }

  .product-detail-breadcrumb a,
  .product-detail-breadcrumb span {
    font-size: 14px;
  }

  .product-detail-breadcrumb-separator {
    padding: 0 10px !important;
  }

  .product-detail-media-file {
    gap: 5px;
  }
}

@media (max-width: 767px) {
  .product-detail-wrapper {
    padding-bottom: 10px;
  }

  .about-gallery-bottom {
    padding: 24px;
    margin-top: 0;
  }

  .product-detail-media-visual {
    min-width: 100%;
    min-height: 383px;
  }

  .product-detail-info h1 {
    font-size: 24px;
  }

  .product-detail-info {
    border-left: 0;
    padding-left: 0;
    padding-bottom: 20px;
  }

  .product-detail-chip {
    font-size: 13px;
  }

  .product-detail-subtitle {
    font-size: 17px;
  }

  .product-detail-spec-list {
    font-size: 17px;
  }

  .product-detail-select {
    font-size: 15px;
    height: 50px;
    padding: 0;
  }

  .product-detail-primary-button {
    font-size: 15px;
    height: 50px;
    padding: 0;
  }

  .product-detail-tabs {
    padding-top: 20px !important;
  }

  .product-detail-feature-list {
    font-size: 17px;
  }

  .product-detail-related {
    margin-left: 0;
  }

  .product-detail-related-header h2 {
    font-size: 22px;
  }

  .product-detail-main,
  .product-detail-related,
  .product-detail-breadcrumb {
    padding: 10px 20px;
  }

  .product-detail-main {
    margin-bottom: 30px;
  }

  .product-detail-cta {
    align-items: stretch;
    width: 100%;
  }

  .product-detail-gallery-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-gallery-item img {
    height: 270px;
  }

  .product-detail-related-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .product-detail-media-files {}
}

/* Footer */
.site-footer {
  background: #0c2f73;
  padding: 67px 74px 24px 84px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.site-footer-social a:hover svg path {
  fill: #0c2f73;
}

.site-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.site-footer-message {
  max-width: 25%;
}

.site-footer-title {
  font-size: 2.1vw;
  line-height: 1.3;
  margin: 0 0 32px;
}

.site-footer-button {
  background: #ffffff;
  color: #0c2f73;
  padding: 18px 48px;
  display: inline-block;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.3s ease;
  cursor: pointer;
}

.site-footer-button:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.site-footer-contact-card {
  flex: 1;
  padding: 28px 0;
  display: flex;
  gap: 32px;
  justify-content: flex-end;
}

.site-footer-contact-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-wrap: wrap;
  align-content: flex-end;
}

.site-footer-contact-label {
  font-weight: 600;
  font-size: 32px;
}

.site-footer-contact-value {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #a5b6e6;
  font-size: 1.3vw;
  border: 1px solid transparent;
  padding: 10px 12px 10px 0px;
  transition: 0.3s ease;
}

.site-footer-contact-value svg {
  color: inherit;
}

.site-footer-contact-value:hover {
  color: #ffffff;
}

.site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
}

.site-footer-copy,
.site-footer-brand {
  font-size: 16px;
  font-weight: 500;
}

.site-footer-social {
  display: flex;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer-social a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: 0.3s ease;
}

.site-footer-social a:hover {
  background: #ffffff;
  color: #0c2f73;
}

@media (max-width: 1200px) {
  .site-footer {
    padding: 48px 32px;
  }

  .site-footer-top {}

  .site-footer-contact-card {
    padding: 15px 20px;
    gap: 20px;
  }
}

@media (max-width: 1023px) {
  .site-footer-contact-label {
    font-size: 20px;
  }

  .site-footer-button {
    padding: 10px 12px;
  }

  .site-footer-contact-value svg {
    width: 20px;
    height: 20px;
  }

  .site-footer-top {
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .site-footer-top {
    flex-direction: column;
  }

  .site-footer-message {
    max-width: 100%;
  }

  .site-footer-contact-card {
    flex-direction: column;
    width: 100%;
    gap: 15px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }

  .site-footer-contact-column {
    gap: 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 5px;
    align-content: center;
    justify-content: center;
    text-align: center;
  }

  .site-footer-contact-column:last-child {
    border-bottom: unset;
  }

  .site-footer {
    gap: 10px;
  }

  .site-footer-button {
    padding: 8px 10px;
    font-size: 14px;
  }
}

.footer-contact-overlay {
  position: fixed;
  inset: 0;
  background: #0a2b63a6;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 7vh 20px;
  z-index: 9999;
}

.footer-contact-overlay.active {
  display: flex;
}

.footer-contact-actions input {
  height: 64px;
}

.footer-contact-actions .captcha img {
  height: 64px;
  border-radius: 0;
}

.footer-contact-actions .form-row {
  margin: 0;
  gap: 32px;
}

.footer-contact-actions .captcha {
  margin: 0;
  padding: 0;
}

.footer-contact-modal {
  background: #ffffff;
  border: 1px solid #cfd8ec;
  padding: 32px;
  width: 100%;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: auto;
  overflow-y: scroll;
  max-height: 100%;
}

.footer-contact-modal h3 {
  margin: 0;
  font-size: 40px;
  text-align: center;
  color: #0a2b63;
}

.footer-contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #0a2b63;
  font-size: 14px;
}

.footer-contact-form input,
.footer-contact-form textarea {
  border: 1px solid #9cb2e3;
  padding: 12px 14px;
  font-size: 17px;
  color: #0a2b63;
  background: #fff;
}

.footer-contact-form input::placeholder,
.footer-contact-form textarea::placeholder {
  color: #9cb2e3;
}

.footer-contact-textarea textarea {
  min-height: 120px;
  resize: vertical;
}

.footer-contact-actions {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}

.footer-contact-captcha-display {
  background: #dce2f3;
  padding: 14px 24px;
  font-weight: 600;
  color: #0a2b63;
}

.footer-contact-captcha-input {
  flex: 1;
}

.footer-contact-captcha-input input {
  width: 100%;
  border: 1px solid #9cb2e3;
  padding: 12px;
}

.footer-contact-submit {
  background: #0c2f73;
  color: #fff;
  border: none;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

.footer-contact-submit svg {
  transition: transform 0.3s ease;
}

.footer-contact-submit:hover svg {
  transform: rotate(45deg);
}

@media (max-width: 1500px) {

  .footer-contact-form input,
  .footer-contact-form textarea {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .site-footer-contact-value {
    font-size: 13px;
  }

  .site-footer-title {
    margin: 0 0 0px;
  }

  .site-footer-social a {
    width: 32px;
    height: 32px;
  }

  .site-footer-social a svg {
    height: 15px;
  }

  .contact-title-area .contact-hero-title {
    font-size: 68px;
    margin-left: 24px;
  }
}

@media (max-width: 767px) {

  .footer-contact-form input,
  .footer-contact-form textarea {
    font-size: 15px;
  }

  .footer-contact-form {
    gap: 10px;
  }

  .footer-contact-modal h3 {
    font-size: 24px;
  }

  .footer-contact-modal {
    overflow-y: scroll;
    padding: 12px;
  }

  .footer-contact-overlay {
    overflow: scroll;
    padding: 24px 12px;
  }

  .footer-contact-submit {
    font-size: 20px;
    padding: 10px 15px;
  }

  .footer-contact-actions .form-row {
    gap: 10px;
  }

  .contact-title-area .contact-hero-title {
    font-size: 48px;
  }
}

@media (max-width: 520px) {
  .footer-contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-contact-captcha-display,
  .footer-contact-captcha-input input,
  .footer-contact-submit {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 40px 20px;
  }

  .site-footer-title {
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
  }

  .site-footer-contact-value {
    font-size: 16px;
    flex-wrap: wrap;
  }

  .site-footer-bottom {
    flex-direction: column;
  }
}



.product-detail-select.disabled svg {
  display: none;
}

.product-detail-options {
  display: none;
}

.product-detail-options.open {
  display: block;
}

.goog-te-banner-frame,
.goog-logo-link,
.goog-te-gadget {
  display: none !important;
}

body {
  top: 0 !important;
}

.VIpgJd-ZVi9od-ORHb-OEVmcd {
  display: none;
}

.lang-dropdown {
  position: relative;
  padding: 20px;
  background: #0c367c29;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  outline: none;
  border: unset;
  height: 100%;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  list-style: none;
  padding: 6px 0;
  margin: 0;
  min-width: 80px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: .25s ease;
  z-index: 1000;


}

.lang-dropdown:hover .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


.lang-menu li a {
  display: block;
  padding: 8px 14px;
  color: #222 !important;
  font-size: 14px;
  text-decoration: none;
  transition: background .2s;
}

.lang-menu li a:hover {
  background: #f2f2f2;
}

.lang-menu li a.active {
  font-weight: 600;
  background: #eee;
  pointer-events: none;
}


/* Google Translate Compatibility - Breadcrumb Fix */
/* .product-detail-breadcrumb font,
.product-detail-breadcrumb-right font {
  display: inline-flex !important;
  align-items: center !important;
  padding: 0 !important;
  margin: 0 !important;
}

.product-detail-breadcrumb-separator svg {
  flex-shrink: 0 !important;
  display: block !important;
}


.product-detail-breadcrumb-right>font,
.product-detail-breadcrumb-right>span>font {
  display: contents !important;
}


.product-detail-breadcrumb-separator+font,
font+.product-detail-breadcrumb-separator {
  margin: 0 !important;
} */

.wp-float-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wp-float-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

.wp-float-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .wp-float-btn {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }
}