[role=main] {
  background: rgba(0, 16, 33, 1);
}

#app-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 16, 33, 1);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  flex-direction: column;
  max-width: 1170px;
  padding: 0;
  margin: 0 auto;
}

.logo-row {
  display: flex;
  align-items: center;
  padding: 12px 0 8px 0;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 32px 10px 32px;
}

.logo-area {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-area img {
  height: 36px;
  width: auto;
  display: block;
}

.logo-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 24px;
}

#main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  position: relative;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 400;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  outline: unset !important;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  font-weight: 700;
  background: none !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.4) 0%, #002B52 100%);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(.4, 0, .2, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link .indicator {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.4));
  border-radius: 2px;
  border: 4px solid;
  border-image-source: linear-gradient(90deg, rgba(255, 255, 255, 0.4) 0%, #002B52 100%);

}

.nav-link.active .indicator,
.nav-link:hover .indicator {
  transform: translateX(-50%) scaleX(1);
}

.nav-cta {
  background: #ffff;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: #002855;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  padding: 8px 20px;
  border-radius: 24px;
  margin-left: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  border: none;
  outline: unset !important;
  background-color: rgba(0, 16, 33, 1) !important;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(.4, 0, .2, 1), opacity 0.2s;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

#mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #080c1c;
  z-index: 999;
  flex-direction: column;
  overflow-y: auto;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.28s cubic-bezier(.4, 0, .2, 1), opacity 0.25s;
  pointer-events: none;
}

#mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}

.mobile-nav-btn {
  background: none !important;
  border: none;
  border-bottom: 1px solid #fff;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 500;
  padding: 20px 28px;
  text-align: left;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  letter-spacing: 0.01em;
}

.mobile-nav-btn:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile-nav-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.mobile-cta-wrap {
  padding: 28px 28px 48px;
  display: flex;
  justify-content: center;
}

.mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 26px;
  border: 1.5px solid #002855;
  border-radius: 100px;
  background: #fff;
  color: #002855 !important;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 40px;
  width: 178px;
}

.mobile-cta:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-footer {
  padding: 16px 28px 24px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.page-content {
  padding-top: 64px;
}

.demo-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 22px;
  color: rgba(255, 255, 255, 0.2);
  font-weight: 300;
  letter-spacing: 0.04em;
}

.top-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 32px;
}

.top-banner picture,
.top-banner img {
  display: block;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.top-banner-logo {
  position: absolute;
  bottom: 40px;
  left: calc(60% - 720px + 40px);
  z-index: 2;
  max-width: 538px;
}

.top-banner-logo p {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
}

.tt5g-container {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  padding-top: 80px;
  z-index: 999;
  position: relative;
}

.tt5g-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 8px;
  position: relative;
  background: rgba(5, 180, 199, 0.05);
}

.tt5g-header::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(286.75deg, #03ABF8 12.19%, #0058AD 64.73%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.tt5g-header::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1px;
  background: conic-gradient(from var(--a),
      transparent 0deg, transparent 140deg,
      rgba(0, 171, 248, 0) 165deg,
      #03ABF8 195deg,
      #0058AD 220deg,
      rgba(0, 88, 173, 0) 245deg,
      transparent 260deg, transparent 360deg);
  -webkit-mask: linear-gradient(#03ABF8 0 0) content-box, linear-gradient(#03ABF8 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: tt5g-spin 8s linear infinite;
  pointer-events: none;
}

.tt5g-header p {
  font-size: 14px;
  color: #fff;
  line-height: 18px;
  font-weight: 400;
}

.tt5g-desktop-grid {
  display: grid;
  grid-template-columns: 270px repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.tt5g-section-heading {
  grid-row: 1/3;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 12px;
  width: 100%;
  background: rgba(5, 180, 199, 0.05);
  position: relative;
  box-shadow: 0px 0px 100px 0px rgba(165, 178, 195, 0.3);
}

.tt5g-section-heading::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(286.75deg, #03ABF8 12.19%, #0058AD 64.73%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.tt5g-section-heading::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;
  background: conic-gradient(from var(--a),
      transparent 0deg, transparent 140deg,
      rgba(0, 171, 248, 0) 165deg,
      #03ABF8 195deg,
      #0058AD 220deg,
      rgba(0, 88, 173, 0) 245deg,
      transparent 260deg, transparent 360deg);
  -webkit-mask: linear-gradient(#03ABF8 0 0) content-box, linear-gradient(#03ABF8 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: tt5g-spin 10s linear infinite;
  pointer-events: none;
}

.tt5g-section-heading h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  color: #fff;
}

.tt5g-item {
  border-radius: 12px;
  padding: 18px;
  background: #0c1220;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 265px;
  background: rgba(5, 180, 199, 0.05);
}

.tt5g-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(286.75deg, #03ABF8 12.19%, #0058AD 64.73%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.tt5g-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;
  background: conic-gradient(from var(--a),
      transparent 0deg, transparent 140deg,
      rgba(0, 171, 248, 0) 165deg,
      #03ABF8 195deg,
      #0058AD 220deg,
      rgba(0, 88, 173, 0) 245deg,
      transparent 260deg, transparent 360deg);
  -webkit-mask: linear-gradient(#03ABF8 0 0) content-box, linear-gradient(#03ABF8 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: tt5g-spin var(--s, 10s) linear infinite var(--d, 0s);
  pointer-events: none;
}

@keyframes tt5g-spin {
  to {
    --a: 360deg
  }
}

.tt5g-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 8px 0;
  line-height: 22px;
  color: #fff;
}

.tt5g-item p {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #fff;
}

.tt5g-mobile-heading {
  display: none;
  border: 1px solid #1a3a5c;
  border-radius: 12px;
  padding: 16px;
  background: #0c1220;
  margin-bottom: 12px;
}

.tt5g-mobile-heading h2 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35
}

#tt5g-mobile-list {
  display: none;
  flex-direction: column;
  gap: 12px
}

#tt5g-mobile-list .tt5g-item.tt5g-collapsed {
  display: none
}

@keyframes tt5g-reveal {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.tt5g-revealed {
  animation: tt5g-reveal .35s ease forwards
}

#tt5g-toggle {
  display: none;
  width: 100%;
  padding: 13px;
  background: none;
  border: none;
  color: #049EAD;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
  outline: unset !important;
}

#tt5g-toggle .tt5g-arrow {
  font-size: 14px;
  font-weight: 800;
  color: #049EAD;
  transition: transform 0.3s ease;
  text-decoration: none;
  margin-left: 4px;
  content: '';
  display: inline-block;
  width: 9px;
  height: 9px;
  border-right: 2px solid #049EAD;
  border-bottom: 2px solid #049EAD;
  transform: rotate(45deg);
  margin-bottom: 3px;
}

#tt5g-toggle.tt5g-open .tt5g-arrow {
  transform: rotate(-135deg);
  margin-bottom: -3px;
}


.digital-section {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding-top: 80px;
}

.dd-heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  margin-bottom: 28px;
  color: #fff;
}

.dd-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: var(--dd-gap-card);
  align-items: start;
}

.dd-card--header {
  grid-column: 1 / -1;
}

.dd-visual__img {
  width: 423px;
  object-fit: cover;
  object-position: center top;
  display: block;
  position: absolute;
}

.dd-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      transparent 60%,
      #0b0c1e 100%);
  pointer-events: none;
}

.dd-cards {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: end;
}

.dd-card {
  background: linear-gradient(90deg, rgba(190, 77, 255, 0.3) 0%, rgba(0, 48, 100, 0.3) 100%);
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 20px;
}

.dd-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 22px;
}

.dd-card__desc {
  font-size: 14px;
  line-height: 18px;
  color: #fff;
  font-weight: 400;
}

.dd-card__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a78bfa;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 8px;
  padding: 2px 8px;
  margin-bottom: 8px;
}

.dd-cards .dd-card:nth-child(1) {
  width: 848px;
}

.dd-cards .dd-card:nth-child(2) {
  width: 728px;
}

.dd-cards .dd-card:nth-child(3) {
  width: 748px;
}

.dd-cards .dd-card:nth-child(4) {
  width: 780px;
}

.tim-section {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding-top: 80px;
}

.tim-layout {
  display: flex;
  align-items: center;
}

.tim-copy {
  flex: 1;
  min-width: 0;
}

.tim-copy__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: 0px;
  max-width: 342px;
  width: 100%;
  color: #fff;
  margin-bottom: 32px;
}

.tim-copy__desc {
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  font-weight: 400;
  max-width: 100%;
  margin-bottom: 32px;
  letter-spacing: -1%;
}

.tim-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 26px;
  border: 1.5px solid #002855;
  border-radius: 100px;
  background: #fff;
  color: #002855 !important;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 40px;
  width: 178px;
}

.tim-location {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.tim-location__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255 255 255 / .05);
  border: 1px solid var(--tim-border);
  display: grid;
  place-items: center;
}

.tim-location__name {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  margin-bottom: 2px;
  color: #fff;
}

.tim-location__address {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 22px;
  margin-bottom: 7px;
}

.tim-location__directions {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  color: #fff !important;
  text-decoration: underline;
}

.tim-visual {
  flex: 0 0 auto;
  position: relative;
  width: min(400px, 34%);
}

.contact-section {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}

.contact-section h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  padding-top: 80px;
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding-top: 32px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  gap: 16px;
  position: relative;
  overflow: hidden;
  max-width: 570px;
  width: 100%;
}

.card-email {
  color: #fff;
  text-align: start;
}

a.contact-card.card-address-card {
  align-items: center;
}

.contact-card .card-body {
  padding: 0 !important;
  text-align: start !important;
  color: #fff;
}

.card-company {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  line-height: 22px;
}

.card-address {
  font-size: 16px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.75);
}

.map-link {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: #fff;
  text-decoration: underline;
}

#sec-partnerler .partnerler-baslik {
  font-size: 32px;
  line-height: 38px;
  font-weight: 700;
  color: #fff;
  max-width: 1170px;
  margin: 0 auto;
  margin-bottom: -40px;
  padding-top: 80px;
}

/* cards */

ul.tab.flex.gap-12.flex-wrap,
.kategoriler,
.result-filters,
span.card-tablink,
nav.pagination.center,
section#main-cards .btn-secondary {
  display: none;
}

h2.section-text.text-2418.text-mB.text-main.sebyt {
  color: #fff;
}

div#blog-cards-container {
  max-width: 768px;
  width: 100%;
  border: 1px solid #dee3ed;
  border-radius: 12px;
  z-index: 999;
  position: relative;
  padding: 32px 28px;
}

.inner-section.flex.flex-col.mq-l\:px-default.gap-4016 {
  display: flex;
  align-items: center;
}

span.dtrt-flex,
h5.btitle,
p.text-line-clamp-2 {
  color: #fff !important;
}

.btn-link-01 {
  color: #049EAD;
  margin-top: 0 !important;
}

.btn-link-01::after {
  content: '›';
  font-size: 27px;
  margin-left: 12px;
  top: 2px;
  position: relative;
}

.main-card.type-01 {
  background: rgba(0, 16, 33, 1) !important;
  border: unset;
  padding: 0;
}

hgroup.content.flex.flex-col.gap-16 {
  gap: 8px;
  display: flex;
  flex-direction: column;
  margin-top: 12px;
}

.blog-detail .inner-section .content {
  margin: 0 !important;
}

.detail-page #blog-detail .inner-section {
  background-color: rgba(0, 16, 33, 1) !important;
}

h2.title.text-3224.text-mB,
p,
strong,
.blog-detail .inner-section .content .date,
.blog-detail .inner-section .content .blog-badge {
  color: #fff !important;
}

ul.social-media.flex.gap-12.items-center,
.blog-box,
.blog-detail .inner-section .content .blog-badge,
.bdtl span:nth-child(2),
.breadcrumb-group .breadcrumb,
span.rtflx:nth-child(2) {
  display: none !important;
}

section.blog-card-list#main-cards .tumu-gor-btn {
  grid-column: 1 / -1;
  grid-row: 2;
  display: block;
  border: 1.5px solid #002855;
  border-radius: 999px;
  padding: 12px 32px;
  color: #002855;
  background: #fff;
  text-align: center;
  line-height: 22px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  width: max-content;
  min-width: 238px;
  justify-self: center;
}

section.blog-card-list#main-cards {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  padding-top: 80px;
  gap: 37px;
  justify-content: space-between;
  padding-left: 0;
}

section.blog-card-list#main-cards .inner-section {
  grid-column: 1;
  grid-row: 1;
  justify-self: self-start;
}

section.blog-card-list#main-cards .blog-cards-wrapper {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
}

@media (max-width: 990px) {
  .top-banner-logo {
    bottom: 60px;
    left: 16px;
    max-width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    right: 16px;
  }

  .top-banner-logo p {
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    width: 343px;
  }

  .top-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to top,
        rgba(4, 12, 40, 0.95) 0%,
        rgba(4, 12, 40, 0.6) 50%,
        transparent 100%);
    z-index: 1;
  }

  .top-banner-logo {
    z-index: 2;
  }

  .top-banner img {
    opacity: 0.8;
  }

  .top-banner {
    padding-top: 0 !important;
  }

  .logo-divider,
  img.logo-desktop,
  #main-nav {
    display: none;
  }

  .hamburger,
  #mobile-menu {
    display: flex;
  }

  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    margin: 0;
  }

  .nav-row,
  .logo-row {
    padding: 16px;
  }

  img.logo-mobile {
    display: block !important;
  }

  .tt5g-desktop-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 0px 16px 20px;
  }

  .tt5g-section-heading {
    grid-row: auto;
    justify-content: center;
  }

  .tt5g-section-heading h2 {
    font-size: 22px;
    line-height: 28px;
  }

  .tt5g-item {
    height: auto;
  }

  .tt5g-brand {
    width: 70px;
  }

  .tt5g-header {
    margin: 0 16px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .tt5g-container {
    padding: 0;
  }

  .tt5g-item[data-i="4"],
  .tt5g-item[data-i="5"],
  .tt5g-item[data-i="6"] {
    display: none;
  }

  .tt5g-item[data-i="4"].tt5g-visible,
  .tt5g-item[data-i="5"].tt5g-visible,
  .tt5g-item[data-i="6"].tt5g-visible {
    display: block;
  }

  #tt5g-toggle {
    display: flex;
    margin-bottom: 24px;
  }

  .digital-section {
    padding-top: 0;
  }

  .dd-heading {
    margin: 0 16px 32px;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
  }

  .dd-section {
    max-width: 420px;
  }

  .dd-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    position: relative;
    margin: 0 16px 32px;
  }

  .dd-card--header {
    grid-column: 1;
    position: relative;
    z-index: 2;
  }

  .dd-visual {
    grid-column: 1;
    grid-row: 2 / 8;
    min-height: unset;
    height: auto;
    border-radius: 0;
    z-index: 0;
  }

  .dd-visual__img {
    width: 440px;
    object-fit: cover;
    object-position: right top;
    transform: scaleX(-1);
    opacity: 0.53;
    top: 0;
  }

  .dd-visual::after {
    background: linear-gradient(to bottom,
        transparent 30%,
        #0b0c1e 90%);
  }

  .dd-card {
    background: linear-gradient(90deg, rgba(190, 77, 255, 0.2) 0%, rgba(0, 48, 100, 0.2) 100%);
    width: 100% !important;
  }

  .dd-cards {
    grid-column: 1;
    grid-row: 2;
    position: relative;
    z-index: 2;
  }

  .tim-section {
    padding: 0;
  }

  .tim-layout {
    flex-direction: column;
    padding: 16px;
    gap: 0;
  }

  .tim-copy {
    width: 100%;
    display: contents;
  }

  .tim-copy__title {
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    margin-bottom: 20px;
  }

  .tim-copy__desc {
    text-align: center;
    max-width: 100%;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 22px;
  }

  .tim-visual {
    width: 100%;
    margin-left: 20px;
  }

  .tim-cta {
    margin-bottom: 0;
    margin-top: 20px;
    z-index: 999;
  }

  .tim-location {
    order: 5;
    width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    padding: 20px 16px;
    gap: 12px;
  }

  .contact-card {
    max-width: 100%;
    padding: 12px 0 12px 12px;
    gap: 12px;
    align-items: start;
  }

  .card-address-card {
    align-items: center;
  }

  .card-address-card .card-icon {
    padding-top: 2px;
  }

  span.map-link,
  .card-email {
    font-size: 12px;
  }

  p.card-company,
  p.card-address {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
  }

  .contact-section h2 {
    font-size: 24px;
    line-height: 28px;
    padding: 16px 14px 0 16px;
  }

  .all-sites {
    padding: 0 12px !important;
    margin-top: 20px !important;
  }

  #sec-partnerler .partnerler-baslik {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
    padding-top: 32px;
    text-align: center;
  }

  section#main-cards {
    flex-direction: column;
    padding: 16px !important;
    display: flex !important;
    align-items: center;
  }
}