:root {
  --vps-bg-image: url("../safirnet/images/ana-sayfa/desktop/slider-bg-1.webp");
  /* Core Brand Colors */
  --black: #000000;
  --white: #ffffff;
  --safir-blue: #006da4;
  --safir-g: #549dc2;
  --blue: #1261fe;

  /* Secondary Colors */
  --orange: #ff8f00;
  --green: #0bd074;
  --red: #ff2b39;
  --gray: #889398;
  --yellow: #ffc219;

  /* Safir Blue Variants */
  --safir-blue-50: #e6f0f8;
  --safir-blue-100: #b0d2e3;
  --safir-blue-200: #8abcd5;
  --safir-blue-300: #549dc2;
  --safir-blue-400: #338ab6;
  --safir-blue-500: #006da4;
  --safir-blue-600: #006395;
  --safir-blue-700: #004d74;
  --safir-blue-800: #003c5a;
  --safir-blue-900: #002e45;

  /* Blue Variants */
  --blue-50: #e7f2ff;
  --blue-100: #cce6ff;
  --blue-200: #92cbff;
  --blue-300: #6095fe;
  --blue-400: #4181fe;
  --blue-500: #1261fe;
  --blue-600: #1058e7;
  --blue-700: #0045b4;
  --blue-800: #003c5a;
  --blue-900: #002968;

  /* Gray Variants */
  --gray-50: #f3f4f5;
  --gray-100: #dadeef;
  --gray-200: #c8d0d0;
  --gray-300: #aeb7ba;
  --gray-400: #a0a9ad;
  --gray-500: #889398;
  --gray-600: #7c868a;
  --gray-700: #61686c;
  --gray-800: #4b5154;
  --gray-900: #393e40;

  /* Orange Variants */
  --orange-50: #fff4e6;
  --orange-100: #ffedc8;
  --orange-200: #ffcbaa;
  --orange-300: #ffab54;
  --orange-400: #ffa533;
  --orange-500: #ff8f00;
  --orange-600: #e88200;
  --orange-700: #d66b00;
  --orange-800: #bc4f00;
  --orange-900: #b63c00;

  /* Green Variants */
  --green-50: #e7faf1;
  --green-100: #b3f0d4;
  --green-200: #89ebbf;
  --green-300: #56e0a2;
  --green-400: #3cd990;
  --green-500: #0bd074;
  --green-600: #0ab06a;
  --green-700: #089452;
  --green-800: #067420;
  --green-900: #055731;

  /* Red Variants */
  --red-50: #ffe8eb;
  --red-100: #ffbdc2;
  --red-200: #ff9da4;
  --red-300: #ff717a;
  --red-400: #ff5661;
  --red-500: #ff2b39;
  --red-600: #e62234;
  --red-700: #b51f28;
  --red-800: #8c181f;
  --red-900: #6b1218;

  /* Yellow Variants */
  --yellow-50: #fff9e8;
  --yellow-100: #ffecb8;
  --yellow-200: #ffe395;
  --yellow-300: #ffd665;
  --yellow-400: #ffce47;
  --yellow-500: #ffc219;
  --yellow-600: #f8b117;
  --yellow-700: #d5a112;
  --yellow-800: #8c8b0e;
  --yellow-900: #6b510b;
}

.top-bar {
  background-color: var(--primary-color);
  padding: 0.75rem 0;
  color: white;
}

.top-bar .btn {
  background-color: var(--secondary-color);
  color: white;
  margin: 0 0.25rem;
}

.currency-selector {
  display: flex;
  align-items: center;
  background-color: var(--accent-color);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin: 0 0.5rem;
}

.main-nav {
  background: white;
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-links a {
  color: var(--primary-color);
  text-decoration: none;
  margin: 0 1rem;
  font-weight: 500;
}

.nav-links a.active {
  font-weight: 700;
}

/* Hover Menu Styles */
.nav-item {
  position: relative;
}

.hover-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 2rem 0;
  z-index: 1000;
  margin-top: 1rem;
}

.nav-item:hover .hover-menu {
  opacity: 1;
  visibility: visible;
}

.menu-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.menu-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.menu-card:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.menu-card .icon {
  background: var(--light-bg);
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.menu-card .icon img {
  width: 24px;
  height: 24px;
}

.menu-card h3 {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.menu-card p {
  color: #6c757d;
  font-size: 0.9rem;
  margin: 0;
}

/* Ensure the hover menu spans full width */
.nav-item {
  position: static;
}

.hover-menu {
  left: 0;
  right: 0;
  transform: translateX(0);
}

/* Add arrow indicator for dropdown */
.nav-links a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border: solid var(--primary-color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-left: 8px;
  position: relative;
  top: -2px;
}

.nav-links a:not([href="#"]):after {
  display: none;
}

/* Header classes */

.top-bar {
  background-color: var(--safir-blue-800);
  color: #ffffff;
  font-size: 0.9rem;
}

.top-bar a {
  color: #ffffff;
  text-decoration: none;
}

.top-bar a:hover {
  text-decoration: underline;
}

.currency-balance {
  background-color: var(--accent-color);
  color: #ffffff;
  padding: 0.2rem 0.5rem;
  border-radius: 5px;
  font-weight: bold;
}

.hover-trigger {
  position: relative;
}

.hover-content {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #f8f9fa;
  padding: 1rem;
  display: none;
  z-index: 1000;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.hover-trigger:hover .hover-content {
  display: block;
}

/* Card styles */
.card .icon img {
  width: 40px;
  height: 40px;
}

.card .price {
  font-size: 1.5rem;
  font-weight: bold;
}

.logo {
  height: 40px;
}

.section-title-container {
  position: relative;
}

.section-title-container img {
  max-width: 100%;
  height: 6.5rem;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.section-title {
  color: var(--safir-blue-800);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2.8rem;
  z-index: 2;
  position: relative;
}

.button-large {
  background: linear-gradient(138.01deg, #006da4 0.33%, #549dc2 106.18%);
  color: var(--white);
  border: none;
  border-radius: 0.5rem;
  padding: 1rem;
  cursor: pointer;
  width: 180px;
  height: 52px;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1rem;
}

/* .slider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  position: absolute;
  top: 83%;
  left: 50%;
  z-index: 1;
}

.slider-content {
  display: flex;
  overflow: hidden;
  width: 100%;
  position: relative;
  margin: 0 auto;
}

.slider-item {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 2rem;
  display: none;
  margin: 0 auto;
  opacity: 0;
}

.slider-item.active {
  display: block;
  opacity: 1;
}

.slider-dots-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.75rem;
  justify-content: center;
  position: absolute;
  top: 85%;
  left: 50%;
}

.slider-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--safir-blue-200);
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
  padding: 0;
}

.slider-dot.active {
  background-color: var(--safir-blue-500);
  transform: scale(1.2);
} */

.content-text {
  color: var(--safir-blue-700);
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}

#page-overlay {
  position: absolute;
  overflow: visible;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 46, 69, 0.7);

  z-index: 4;
}

#page-overlay.shifted {
  top: 170px;
}

#cookies {
  position: fixed;
  width: min(calc(100vw - 32px), 1020px);

  background-color: white;
  bottom: 40px;
  z-index: 5;

  border-radius: 12px;

  padding: 16px;

  left: 50%;
  transform: translateX(-50%);
  max-height: calc(100vh - 40px - 15px);
}

#cookies.detail {
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, +50%);
}

#cookies .frame {
  display: flex;
  flex-direction: column;
  row-gap: 16px;

  max-height: 100%;
}

#cookies.detail .frame:not(.detail) {
  display: none;
}

#cookies:not(.detail) .frame.detail {
  display: none;
}

#cookies .scroller-y {
  overflow-y: scroll;
  max-height: 500px;
}

#cookies .frame .title {
  color: var(--safir-blue-900);
  font-size: 24px;
  font-weight: 700;
  line-height: 28.15px;
}

#cookies .frame .text {
  color: var(--safir-blue-900);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

#cookies .frame.detail .text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#cookies .consent-box {
  display: flex;
  flex-direction: column;
  gap: 8px;

  border: 0px solid var(--safir-blue-100);
  border-bottom-width: 1px;
  padding-bottom: 16px;
}

#cookies .consent-box > * {
  cursor: pointer;
}

#cookies .consent-box .input-checkbox-cont {
  display: flex;
  align-items: center;
  gap: 8px;

  font-weight: 600;
}

#cookies .frame .button-container {
  display: flex;
  justify-content: flex-end;
  column-gap: 16px;
  row-gap: 12px;
}

@media (max-width: 545px) {
  #cookies {
    top: 15px;
    bottom: 28px;
    max-height: calc(100vh - 28px - 15px);
  }

  #cookies .button-container {
    flex-wrap: wrap;
  }

  #cookies.detail {
    top: 15px;
    bottom: 28px;
    transform: translate(-50%, 0);
  }

  #cookies .button-container button {
    width: 100%;
  }
}

/* Design System: Buttons */

.square-icon-button {
  width: 52px;
  height: 52px;
}

/* Design System: Primary Buttons */
button.pb {
  background: linear-gradient(138.01deg, #006da4 0.33%, #549dc2 106.18%);
  padding: 10px;
  color: var(--white);
  border: none;

  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  line-height: 16.42px;

  text-align: center;
}

button.pb:hover {
  background: var(--safir-blue-600);
}

button.pb:active {
  background-color: var(--safir-blue-700);
}

button.pb[disabled] {
  background: var(--gray-50);
  color: var(--gray-200);
}

/* Design System: Secondary Buttons */
button.sb {
  background-color: white;
  padding: 10px;
  color: var(--safir-blue-800);
  border: 1px solid var(--safir-blue-800);

  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  line-height: 16.42px;

  text-align: center;
}

button.sb.b-danger {
  border-color: var(--red-200);
  background-color: var(--red-50);
  color: var(--red-500);
}

button.sb.b-danger:hover {
  border-color: var(--red-200);
  background-color: var(--red-100);
  color: var(--red-500);
}

button.sb:hover {
  background-color: var(--safir-blue-50);
}

button.sb:active {
  background-color: var(--safir-blue-500);
  color: white;
}

button.sb[disabled] {
  background: var(--gray-50);
  color: var(--gray-200);
  border-color: var(--gray-200);
}

button.sb.active {
  background-color: var(--safir-blue-500);
  color: white;
}

/* Button Sizes */
button.bl {
  height: 52px;
}

button.bm {
  height: 42px;
}

button.bs {
  height: 36px;
}

/* Buttons css for a tags */
a.pb {
  text-decoration: none;
  background: linear-gradient(138.01deg, #006da4 0.33%, #549dc2 106.18%);
  padding: 10px;
  color: var(--white);
  border: none;

  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  line-height: 16.42px;

  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

a.pb:hover {
  background: var(--safir-blue-600);
}

a.pb:active {
  background-color: var(--safir-blue-700);
}

a.pb[disabled] {
  background: var(--gray-50);
  color: var(--gray-200);
}

/* Design System: Secondary Buttons */
a.sb {
  background-color: white;
  padding: 10px;
  color: var(--safir-blue-800);
  border: 1px solid var(--safir-blue-800);

  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  line-height: 16.42px;

  text-align: center;
}

a.sb.b-danger {
  border-color: var(--red-200);
  background-color: var(--red-50);
  color: var(--red-500);
}

a.sb.b-danger:hover {
  border-color: var(--red-200);
  background-color: var(--red-100);
  color: var(--red-500);
}

a.sb:hover {
  background-color: var(--safir-blue-50);
}

a.sb:active {
  background-color: var(--safir-blue-500);
  color: white;
}

a.sb[disabled] {
  background: var(--gray-50);
  color: var(--gray-200);
  border-color: var(--gray-200);
}

a.sb.active {
  background-color: var(--safir-blue-500);
  color: white;
}

/* Button Sizes */
a.bl {
  height: 52px;
}

a.bm {
  height: 42px;
}

a.bs {
  height: 36px;
}

.page-title-container {
  padding: 36px 0;
  /* padding: 36px 111px 36px 13px; */
  background-color: var(--safir-blue-50);
}

.page-title-container .cont {
  max-width: 100%;
}

.page-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1rem;
  color: var(--safir-blue-500);
  background-color: var(--safir-blue-100);
  padding: 4px 10px 4px 10px;
  border-radius: 4px;
  max-height: 24px;
}

.page-subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 16.42px;
  color: var(--safir-blue-900);
  margin-top: 12px;
}

/* Design System: Dropdown Button */

.dropdown.dropdown-btn {
  min-width: 180px;
  width: 180px;
}

.dropdown.dropdown-btn button {
  min-width: 180px;
  width: 180px;

  background-color: white;
  border: 1px solid var(--safir-blue-300);
  border-radius: 8px;
  padding: 10px;
}

.dropdown.dropdown-btn button:active {
  border-color: var(--safir-blue-900);
  background-color: white;
}

.dropdown.dropdown-btn button:hover:not(:active):not(:disabled) {
  background-color: var(--safir-blue-50);
}

.dropdown.dropdown-btn button:disabled {
  border-color: var(--gray-100);
  color: var(--gray-200);
}

.dropdown.dropdown-btn button::after {
  display: none;
}

.dropdown.dropdown-btn .inside {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.dropdown.dropdown-btn button:not(:disabled) .inside .text {
  color: var(--safir-blue-800);

  font-size: 14px;
  font-weight: 700;
  line-height: 16.42px;
}

.dropdown.dropdown-btn .inside .text span {
  font-size: 14px;
  font-weight: 400;
  line-height: 16.42px;
}

.dropdown.dropdown-btn ul.dropdown-menu {
  width: 180px;
  max-width: 180px;

  flex-direction: column;

  border: 1px solid var(--safir-blue-100);
  border-radius: 8px;
  padding: 12px;
  row-gap: 16px;
}

.dropdown.dropdown-btn ul.dropdown-menu.show {
  display: flex;
  visibility: visible;
}

.dropdown.dropdown-btn ul.dropdown-menu > li {
  border: 0px solid var(--safir-blue-50);
  border-block-end-width: 1px;
}

.dropdown.dropdown-btn ul.dropdown-menu a.dropdown-item {
  color: var(--safir-blue-300);
  display: flex;
  column-gap: 4px;

  padding: 0 0 8px 0;
}

.dropdown.dropdown-btn ul.dropdown-menu a.dropdown-item:hover {
  background-color: initial;
}

.dropdown.dropdown-btn ul.dropdown-menu .text {
  font-size: 14px;
  font-weight: 400;
  line-height: 16.42px;
}

.dropdown.dropdown-btn ul.dropdown-menu .text span {
  font-size: 14px;
  font-weight: 700;
  line-height: 16.42px;
}

/* Design System: Input Text */

.input-text-cont {
  position: relative;
  display: flex;
}

input[type="text"] {
  width: 343px;
  height: 52px;

  border: 1px solid var(--safir-blue-100);
  padding: 10px 12px;
  border-radius: 8px;

  outline: none;

  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.25px;
  color: var(--safir-blue-900);
}

input[type="text"] + .placeholder {
  background-color: white;

  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);

  color: var(--safir-blue-900);

  transition: all 0.3s ease;

  pointer-events: none;
}

input[type="password"] {
  width: 343px;
  height: 52px;

  border: 1px solid var(--safir-blue-100);
  padding: 10px 12px;
  border-radius: 8px;

  outline: none;

  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.25px;
  color: var(--safir-blue-900);
}

input[type="password"] + .placeholder {
  background-color: white;

  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);

  color: var(--safir-blue-900);
  transition: all 0.3s ease;

  pointer-events: none;
}

.input-text-cont + .helper-text {
  display: none;
  margin-top: 4px;

  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.25px;
}

input[type="text"]:focus + .placeholder {
  color: var(--safir-blue-500);

  background-color: rgba(255, 255, 255, 1);
  top: 0px;

  font-size: 10px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.25px;
  opacity: 100%;
  padding: 0 4px;
}

.placeholder-focus {
  color: var(--safir-blue-500);

  background-color: rgba(255, 255, 255, 1);
  top: 0px;
  left: 12px;
  transform: translateY(-50%);
  position: absolute;
  font-size: 10px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.25px;
  opacity: 100%;
  padding: 0 4px;
}

input[type="password"]:focus + .placeholder {
  color: var(--safir-blue-500);

  background-color: rgba(255, 255, 255, 1);
  top: 0px;

  font-size: 10px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.25px;
  opacity: 100%;
  padding: 0 4px;
}

.input-text-cont.error input[type="text"]:not(.optional) {
  border-color: var(--red-500);
}

.input-text-cont.error input[type="text"]:not(.optional) + .placeholder {
  color: var(--red-500);
}

.input-text-cont.error input[type="password"] {
  border-color: var(--red-500);
}

.input-text-cont.error input[type="password"] + .placeholder {
  color: var(--red-500);
}

.input-text-cont.error input[type="password"] + .placeholder-focus {
  color: var(--red-500);
}

.input-text-cont.error input[data-type]:not(.optional) {
  color: var(--red-300);
}

.input-text-cont.error
  input[data-type].fixed:not(.optional):not(:focus)
  + .placeholder {
  background-color: rgba(255, 255, 255, 1);
  color: var(--red-500);

  top: 0px;

  font-size: 10px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.25px;
  opacity: 100%;
  padding: 0 4px;
}

.input-text-cont.error + .helper-text {
  color: var(--red-500);
  display: block;
}

input[type="text"]:disabled {
  border-color: var(--gray-200);
}

input[type="text"]:disabled + .placeholder {
  color: var(--gray-200);
}

input[type="password"]:disabled + .placeholder {
  color: var(--gray-200);
}

/* Design System: Radio Button */

input[type="radio"] {
  appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 16px;
  height: 16px;
  border: 1px solid var(--safir-blue-100);
  border-radius: 50%;

  display: grid;
  place-content: center;
  cursor: pointer;
}

input[type="radio"] + label {
  cursor: pointer;
}

input[type="radio"]::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--safir-blue-500);
}

input[type="radio"]:checked::before {
  transform: scale(1);
}

/* Design System: Checkbox */

input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 16px;
  height: 16px;
  border: 1px solid var(--safir-blue-100);
  border-radius: 4px;

  display: grid;
  place-content: center;
  cursor: pointer;
}

input[type="checkbox"]:checked {
  border-color: var(--safir-blue-500);
  background-color: var(--safir-blue-500);
}

input[type="checkbox"] + label {
  cursor: pointer;
}

input[type="checkbox"]::before {
  content: "";
  /* Change width and height to adjust tick size  */
  width: 8px;
  height: 4px;
  transform: scale(0) rotate(-45deg);
  transition: 120ms transform ease-in-out;

  background-color: white;
  color: white;

  clip-path: polygon(15% 0, 15% 70%, 100% 70%, 100% 100%, 0 100%, 0 0);
}

input[type="checkbox"]:checked::before {
  /* Adjust translateY as you change tick size */
  transform: scale(1) translateY(-1px) rotate(-45deg);
  background-color: white;
  color: white;
}

input[type="checkbox"]:disabled {
  background-color: var(--gray-100);
  border: none;
}

input[type="checkbox"]:disabled:checked::before {
  background-color: var(--gray-400);
}

.subscription-container {
  border-radius: 1rem;
  border: 2px solid var(--orange-100);
  background-color: var(--orange-50);
  padding: 24px;
}

.subscription-container .subscription-content h2 {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2.8rem;
  color: var(--safir-blue-500);
}

.subscription-container .subscription-content p {
  font-weight: 400;
  font-size: 14px;
  line-height: 16.42px;
  color: var(--safir-blue-900);
}

.subscription-container .subscription-form-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.subscription-container .subscription-form-content .subscription-form {
  height: 68px;
  background-color: #fff;
  border-radius: 8px;
  padding: 8px 8px 8px 16px;
}

.subscription-container .subscription-form-content .subscription-form a {
  width: 120px;
}

.subscription-container .subscription-form-content .subscription-form input {
  color: var(--safir-blue-300);
  font-weight: 600;
  font-size: 1rem;
  line-height: 18.77px;
}

.subscription-container
  .subscription-form-content
  .subscription-form
  input::placeholder {
  color: var(--safir-blue-200);
  font-weight: 600;
  font-size: 1rem;
  line-height: 18.77px;
}

.campaign-card {
  width: 100%;
  border-radius: 12px;
  padding: 12px;
  background-color: var(--blue-50);
  position: relative;
  box-sizing: border-box;
  border: 1px solid transparent;
}

.campaign-card:hover {
  transition: all 0.3s ease;
  border: 1px solid var(--safir-blue-200);
  box-shadow: 0px 9px 22px 0px #00000040;
}

.campaign-card .campaign-card-image {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.campaign-card .campaign-card-image .campaign-image {
  width: 100%;
  height: 200px;
  border-radius: 12px;
}

.campaign-card .campaign-card-image .campaign-card-image-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--safir-blue-500);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
}

.campaign-card .campaign-card-image .campaign-card-image-date {
  display: flex;
  align-items: center;
  gap: 3px;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  color: var(--blue-500);
}

.campaign-card .campaign-card-content .campaign-card-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: var(--safir-blue-900);
}
.campaign-card .campaign-card-content button {
  width: 100%;
}

.campaign-card .campaign-card-content .campaign-card-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--safir-blue-900);

  text-align: justify;
  text-justify: inter-word;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(288px, 1fr));
  width: auto;

  gap: 24px;
  max-width: 1650px;
}

@media (max-width: 1271px) {
  .card-container {
    width: 912px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media (max-width: 959px) {
  .card-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
  }
}

.custom-card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  background-color: #f9f9f9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
  min-width: 288px;
}
.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #8abcd5;
}
.custom-card .icon {
  background-color: #e6f0f6;
  margin-bottom: 15px;
  max-width: fit-content;
  max-height: fit-content;
  padding: 0.625rem;
  border-radius: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-card .icon img {
  width: 100%;
  height: 100%;
}

.custom-card h5 {
  font-weight: bold;
  margin-bottom: 10px;
  color: #003c5a;
}
.custom-card h3 {
  font-weight: bold;
  margin-bottom: 10px;
  color: #003c5a;
}
.custom-card p {
  color: #889398;
  font-size: 0.9rem;
}

.iso-card {
  border-radius: 12px;
  border: 1px solid var(--safir-blue-100);
  padding: 30px;
  background-color: var(--safir-blue-50);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 225px; /* Başlangıç genişliği */
  height: 225px; /* Başlangıç yüksekliği */
  max-width: 100%; /* Maksimum genişliği koru */
}

.iso-card img {
  width: 80%; /* Resmin iç kutuya tam oturmasını sağla */
  height: auto; /* Oranları koru */
  object-fit: contain; /* Görsellerin bozulmasını önle */
}

@media (max-width: 768px) {
  .iso-card {
    padding: 10px;
    width: 106px;
    height: auto;
  }

  .iso-card img {
    width: 100%; /* Daha büyük kalmasını sağla */
    max-width: 120px; /* Minimum okunabilirlik için sınır koy */
  }
}

/* NEDEN SAFİRNET */
.why-safirnet .text-content { 
display: flex; 
flex-direction: column; 
row-gap: 12px; 
transform: translate(0, -50px); /* Masaüstü için */ 
padding-left: 20px;
} 
/* Mobil cihazlar için */ 
@media (max-width: 768px) { 
.why-safirnet .text-content { 
transform: translate(0, -5px); 
} 
}


.why-safirnet .full {
  margin: 0;
  padding: 0;
}

.why-safirnet .full + .full {
  margin-top: 50px;
}

.why-safirnet .full .col-12 {
  margin: 0;
  padding: 0;
}

.why-safirnet .full .block {
  position: absolute;
  top: 0;
  height: 460px;
}

.why-safirnet .img-cont {
  height: clamp(225px, calc(225px + ((100vw - 365px) * 1)), 460px);
  overflow: hidden;
  border-radius: 12px;
}

.why-safirnet .img-cont img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: inherit;
}

.why-safirnet .section-title-container {
  position: relative;
  margin-bottom: 30px;

  @media screen and (max-width: 768px) {
    margin-bottom: 47px;
  }
}

.why-safirnet .section-title-container img:nth-of-type(1) {
  max-width: 100%;
  height: 6.5rem;
  position: static;
  top: 0;
  left: 0;
  transform: none;
  z-index: 1;
}

.why-safirnet .section-title {
  color: var(--safir-blue-800);
  z-index: 2;
  position: absolute;
  top: -10px;
  left: 0px;
  font-size: 48px;
  font-weight: 700;
  line-height: 56.3px;
  text-align: left;
  max-width: 738px;

  @media screen and (max-width: 768px) {
    font-size: 20px;
    max-width: 344px;
    line-height: 27px;
    top: 35px;
  }
}

@media screen and (max-width: 600px) {
  .why-safirnet .section-title {
    top: 50%;
    left: 20px;
  }
}

.why-safirnet .title {
  color: var(--safir-blue-500);
  font-family: Work Sans;
  font-size: 36px;
  font-weight: 700;
  line-height: 42.23px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.why-safirnet .title span {
  font-size: 36px;
  font-weight: 400;
  line-height: 42.23px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.why-safirnet .text-col {
  display: flex;
  align-items: center;
}

.why-safirnet .text {
  color: var(--safir-blue-800);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.why-safirnet .block-1 {
  display: flex;
  flex-direction: row-reverse;
  right: 0;
  /* justify-content: flex-end; */
}

.why-safirnet .block-1 div {
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  background-color: #fde76d;
  width: 47px;
  height: 100%;
}

.why-safirnet .url-bar {
  display: flex;
  justify-content: center;
  align-items: center;

  position: absolute;
  background-color: white;
  border: 2px solid var(--safir-blue-400);
  padding: 21px 53px;
  border-radius: 75px;
  bottom: min(calc(21px + ((100vw - 365px) * 0.1)), 90px);
  left: min(50vw, 665px);
  transform: translateX(-50%);

  z-index: 2;
}

.why-safirnet .url-bar .url-cont {
  display: flex;
  column-gap: 3px;
}

.why-safirnet .url-bar .icon-cont-1 {
  width: 24px;
  height: 24px;
  padding: 2px;
}

.why-safirnet .url-bar .icon-cont-2 {
  position: absolute;

  top: 110%;
  right: 25%;
}

.why-safirnet .block-2 {
  position: absolute;
  height: 100%;
  /* justify-content: flex-end; */
}

.why-safirnet .block-2 div {
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  background-color: #1d326d;
  width: 47px;
  height: 100%;
}

.why-safirnet .ddos-box {
  width: clamp(215px, calc(215px + ((100vw - 365px) * 0.5)), 295px);
  position: absolute;
  bottom: min(calc(30px + ((100vw - 365px) * 0.28)), 200px);
  left: 0px;
  transform: translate(-30%, 50%);

  z-index: 2;
}

.why-safirnet .ddos-box img {
  width: 100%;
  object-fit: contain;
}

.why-safirnet .block-3 {
  display: flex;
  flex-direction: row-reverse;

  right: 0;
}

.why-safirnet .block-3 div {
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  background-color: #eaeae8;
  width: 47px;
  height: 100%;
}

.why-safirnet .mini-screen {
  position: absolute;

  width: clamp(257px, calc(257px + ((100vw - 365px) * 0.5)), 403px);
  bottom: -44px;
  right: 17px;

  z-index: 2;

  box-shadow: 0px 8px 37.2px 0px rgba(0, 0, 0, 0.16);
  border-radius: 12px;
}

.why-safirnet .mini-screen img {
  width: 100%;
  object-fit: contain;
  border-radius: inherit;
}

@media screen and (max-width: 991px) {
  .why-safirnet .full + .full {
    margin-top: 24px;
  }

  .why-safirnet .mini-screen {
    right: 50%;
    bottom: -18px;
    transform: translate(50%, 0);
  }
  .why-safirnet .ddos-box {
    bottom: -10px;
    left: 50%;
    right: 0;
    transform: translate(-50%, 0);
  }
  .why-safirnet .url-bar {
    bottom: 21px;
    padding: 10px;
  }
}

@media screen and (max-width: 600px) {
  .why-safirnet .section-title {
    font-size: 20px;
    line-height: 27px;
    letter-spacing: 0;
  }
}

.technical-spesifications .cont {
  background-color: var(--safir-blue-50);
  border-radius: 16px;

  display: flex;
  flex-direction: column;
  align-items: stretch;

  @media screen and (max-width: 768px) {
    border-radius: 0;
  }
}

.technical-spesifications .cont .cont-1 {
  flex-direction: column;
  position: relative;
}

.technical-spesifications .cont .cont-1 img {
  max-width: 1086px;
  position: absolute;
  width: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.technical-spesifications .cont > .cont-1 .cont-3 {
  flex-direction: column;
  align-items: center;
}

.technical-spesifications .cont > .cont-1 .t1 {
  color: var(--safir-blue-800);
  font-size: 24px;
  font-weight: 700;
  line-height: 45px;
}

.technical-spesifications .cont > .cont-1 .t2 {
  color: var(--safir-blue-900);

  font-size: 24px;
  font-weight: 400;
  line-height: 28.15px;
}

.technical-spesifications .scroller {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.technical-spesifications .cont .cont-2 {
  display: flex;
  align-items: center;

  column-gap: 24px;
}

.technical-spesifications .cont .cont-2 .box-cont {
  display: flex;

  column-gap: 12px;

  /* overflow-x: scroll; */

  flex-shrink: 0;
}

.technical-spesifications .cont .cont-2 > .img-cont {
  border-radius: 12px;

  width: 552px;
  height: 251px;

  min-width: 400px;
  flex-shrink: 1;
}

.technical-spesifications .cont .cont-2 > .img-cont img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.technical-spesifications .box {
  width: 208px;
  background-color: white;

  border-radius: 12px;
  padding: 12px;
}

.technical-spesifications .box .inside {
  display: flex;
  flex-direction: column;

  row-gap: 10px;
}

.technical-spesifications .box .inside .img-cont {
  display: grid;
  place-content: center;

  width: 32px;
  height: 32px;
  border-radius: 4px;

  background-color: var(--safir-blue-50);
}

.technical-spesifications .box .cont-4 {
  display: flex;
  flex-direction: column;

  row-gap: 12px;
}

.technical-spesifications .box .title {
  color: var(--safir-blue-500);

  font-size: 14px;
  font-weight: 600;
  line-height: 16.42px;
}

.technical-spesifications .box ul {
  color: var(--gray-500);

  font-size: 12px;
  font-weight: 400;
  line-height: 14.08px;
  margin: 0;
  margin-left: 1.5em;
  padding: 0;
}

.technical-spesifications .box ul li + li {
  margin-top: 8px;
}

div.scroller {
  overflow-x: scroll;
}

.hs::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.hs {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.plan-card-2 {
  border: 1px solid var(--safir-blue-100);
  min-width: 288px;
  width: 288px;
  padding: 24px;
  border-radius: 12px;
}

.plan-card-2 .card {
  display: flex;
  flex-direction: column;

  row-gap: 16px;
  border: none;
}

.plan-card-2 .card .c1 {
  display: flex;
  flex-direction: column;

  row-gap: 12px;
  padding-bottom: 16px;

  border: 0px solid var(--safir-blue-50);
  border-bottom-width: 1px;
}

.plan-card-2 .card .c1 .title {
  color: var(--safir-blue-900);

  font-weight: 600;
  font-size: 16px;
  line-height: 18.77px;
  letter-spacing: 0;

  display: flex;
  flex-direction: column;
  row-gap: 8px;
}

.plan-card-2 .card .c1 .title .st {
  color: var(--safir-blue-900);

  font-weight: 400;
  font-size: 12px;
  line-height: 14.08px;
  letter-spacing: 0;
}

.plan-card-2 .card .c1 .t1 {
  color: var(--safir-blue-500);

  font-weight: 600;
  font-size: 36px;
  line-height: 42.23px;
  letter-spacing: 0;
}

.plan-card-2 .card .c1 .t1 span {
  color: var(--gray-400);

  font-weight: 400;
  font-size: 16px;
  line-height: 18.77px;
  letter-spacing: 0;
}

.plan-card-2 .card .c2 .title {
  color: var(--safir-blue-900);

  font-weight: 600;
  font-size: 12px;
  line-height: 14.08px;
  letter-spacing: 0;

  margin-bottom: 11px;
}

.plan-card-2 .card .c2 .list {
  display: flex;
  flex-direction: column;

  row-gap: 8px;
}

.plan-card-2 .card .c2 .list .list-item {
  display: flex;

  column-gap: 8px;
}

.plan-card-2 .card .c2 .list .list-item .icon-cont {
  display: grid;
  place-content: center;

  width: 16px;
  height: 16px;
}

.plan-card-2 .card .c2 .list .list-item .text {
  color: var(--gray-500);

  font-weight: 400;
  font-size: 12px;
  line-height: 14.08px;
  letter-spacing: 0;
}

.floating-label {
  position: relative;
  margin-bottom: 20px;
}

.floating-label select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  background: transparent;
  appearance: none;
  transition: border-color 0.3s;
  border-color: var(--safir-blue-100);
}

.floating-label label {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  background-color: #fff;
  font-size: 14px;
  color: var(--safir-blue-500);
  /* opacity: 40%; */
  transition: all 0.3s ease;
  pointer-events: none;
  padding: 0 5px;
}

.floating-label select.form-select:disabled + label {
  background: none;
  opacity: 0.4;
}

.floating-label.error select {
  border-color: var(--red-500);
}

.floating-label.error label {
  background-color: white;
  color: var(--red-500);
}

.floating-label select:focus ~ label,
.floating-label select.has-value ~ label {
  top: -1px;
  font-size: 10px;
  color: var(--safir-blue-500);
  background-color: #fff;
}

.floating-label select:focus {
  border-color: var(--safir-blue-100);
}

.floating-label select.has-value ~ label {
  top: -1px;
  font-size: 10px;
  color: var(--safir-blue-500);
  background-color: #fff;
}

/* Ok işaretini özelleştirme */
.floating-label::after {
  content: url("data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%227%22%20viewBox%3D%220%200%2012%207%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M6.00013%206.70775L0.692383%201.4L1.40013%200.692245L6.00013%205.29225L10.6001%200.692245L11.3079%201.4L6.00013%206.70775Z%22%20fill%3D%22%231C1B1F%22/%3E%3C/svg%3E");
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(360deg);
  font-size: 12px;
  color: #999;
  pointer-events: none;
}

.text-area-floating-label {
  position: relative;
  margin-bottom: 20px;
}

.text-area-floating-label textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--safir-blue-100);
  border-radius: 5px;
  outline: none;
  background: transparent;
  transition: border-color 0.3s;
}

.text-area-floating-label.error textarea {
  border-color: var(--red-500);
}

.text-area-floating-label.error label {
  color: var(--red-500);
}

.text-area-floating-label label {
  position: absolute;
  top: 16px;
  left: 12px;
  font-size: 14px;
  color: var(--safir-blue-500);
  transition: all 0.3s ease;
  pointer-events: none;
  background-color: white;
  padding: 0 5px;
}

.text-area-floating-label textarea:focus ~ label,
.text-area-floating-label textarea.has-value ~ label {
  top: -8px;
  font-size: 12px;
  color: var(--safir-blue-500);
  background-color: white;
  opacity: 1;
}

.text-area-floating-label textarea:focus {
  border-color: var(--safir-blue-500);
}

.accordion {
  --bs-accordion-color: var(--bs-body-color);
  --bs-accordion-bg: transparent;
  --bs-accordion-transition: color 0.15s ease-in-out,
    background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  --bs-accordion-border-color: var(--safir-blue-100);
  --bs-accordion-border-width: var(--bs-border-width);
  --bs-accordion-border-radius: var(--bs-border-radius);
  --bs-accordion-inner-border-radius: calc(
    var(--bs-border-radius) - (var(--bs-border-width))
  );
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: var(--bs-body-color);
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25 24' fill='none'%3E%3Cmask id='mask0_101_9801' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='25' height='24'%3E%3Crect x='0.5' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_101_9801)'%3E%3Cpath d='M12 16.5H13V12.5H17V11.5H13V7.5H12V11.5H8V12.5H12V16.5ZM12.5033 21C11.2587 21 10.0887 20.7638 8.993 20.2915C7.8975 19.8192 6.9445 19.1782 6.134 18.3685C5.3235 17.5588 4.68192 16.6067 4.20925 15.512C3.73642 14.4175 3.5 13.2479 3.5 12.0033C3.5 10.7587 3.73617 9.58867 4.2085 8.493C4.68083 7.3975 5.32183 6.4445 6.1315 5.634C6.94117 4.8235 7.89333 4.18192 8.988 3.70925C10.0825 3.23642 11.2521 3 12.4967 3C13.7413 3 14.9113 3.23617 16.007 3.7085C17.1025 4.18083 18.0555 4.82183 18.866 5.6315C19.6765 6.44117 20.3181 7.39333 20.7908 8.488C21.2636 9.5825 21.5 10.7521 21.5 11.9967C21.5 13.2413 21.2638 14.4113 20.7915 15.507C20.3192 16.6025 19.6782 17.5555 18.8685 18.366C18.0588 19.1765 17.1067 19.8181 16.012 20.2908C14.9175 20.7636 13.7479 21 12.5033 21ZM12.5 20C14.7333 20 16.625 19.225 18.175 17.675C19.725 16.125 20.5 14.2333 20.5 12C20.5 9.76667 19.725 7.875 18.175 6.325C16.625 4.775 14.7333 4 12.5 4C10.2667 4 8.375 4.775 6.825 6.325C5.275 7.875 4.5 9.76667 4.5 12C4.5 14.2333 5.275 16.125 6.825 17.675C8.375 19.225 10.2667 20 12.5 20Z' fill='%23002E45'/%3E%3C/g%3E%3C/svg%3E");
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: none;
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3Csvg width='25' height='24' viewBox='0 0 25 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_101_9813' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='25' height='24'%3E%3Cpath d='M0.5 0H24.5V24H0.5V0Z' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_101_9813)'%3E%3Crect x='7.5' y='11' width='10' height='1' fill='%23006DA4'/%3E%3Cpath d='M12.5033 21C11.2587 21 10.0887 20.7638 8.993 20.2915C7.8975 19.8192 6.9445 19.1782 6.134 18.3685C5.3235 17.5588 4.68192 16.6067 4.20925 15.512C3.73642 14.4175 3.5 13.2479 3.5 12.0033C3.5 10.7587 3.73617 9.58867 4.2085 8.493C4.68083 7.3975 5.32183 6.4445 6.1315 5.634C6.94117 4.8235 7.89333 4.18192 8.988 3.70925C10.0825 3.23642 11.2521 3 12.4967 3C13.7413 3 14.9113 3.23617 16.007 3.7085C17.1025 4.18083 18.0555 4.82183 18.866 5.6315C19.6765 6.44117 20.3181 7.39333 20.7908 8.488C21.2636 9.5825 21.5 10.7521 21.5 11.9967C21.5 13.2413 21.2638 14.4113 20.7915 15.507C20.3192 16.6025 19.6782 17.5555 18.8685 18.366C18.0588 19.1765 17.1067 19.8181 16.012 20.2908C14.9175 20.7636 13.7479 21 12.5033 21ZM12.5 20C14.7333 20 16.625 19.225 18.175 17.675C19.725 16.125 20.5 14.2333 20.5 12C20.5 9.76667 19.725 7.875 18.175 6.325C16.625 4.775 14.7333 4 12.5 4C10.2667 4 8.375 4.775 6.825 6.325C5.275 7.875 4.5 9.76667 4.5 12C4.5 14.2333 5.275 16.125 6.825 17.675C8.375 19.225 10.2667 20 12.5 20Z' fill='%23006DA4'/%3E%3C/g%3E%3C/svg%3E");
  --bs-accordion-btn-focus-border-color: var(--safir-blue-100);
  --bs-accordion-btn-focus-box-shadow: transparent;
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: var(--safir-blue-900);
  --bs-accordion-active-bg: transparent;
}

.accordion-button:not(.collapsed) {
  font-weight: 600;
}

.services-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: var(--safir-blue-900);
  width: 600px;
}

.services-subtitle {
  font-weight: 600;
  font-size: 16px;
  line-height: 18.77px;
  color: var(--safir-blue-900);
}

.services-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--safir-blue-900);
}

.professional-services-container {
  background-color: var(--yellow-50);
}

.professional-services-container .content-container {
  border-top: 1px solid var(--safir-blue-100);
  padding-top: 10px;  
  padding: 40px 0;
}

#contact-form {
  min-height: 800px;
}

#contact-form input {
  width: 100%;
}

#contact-form .img-cont-1 {
  height: clamp(130px, 45vw, 750px);
  margin-bottom: 16px;

  border-radius: 12px;
  overflow: hidden;

  display: grid;
  place-content: center;
}

#contact-form .img-cont-2 img {
  max-height: 750px;
}

@media (min-width: 769px) {
  #contact-form .img-cont-1 {
    height: 750px;
  }
}

#contact-form .file-upload {
  display: flex;
  column-gap: 16px;
}

#contact-form .input-text-cont {
  max-width: none;
  flex-grow: 1;
  flex-shrink: 1;
}

#contact-form .file-upload .b1 {
  min-width: 71px;
  max-width: 131px;
  flex-grow: 1;
  flex-shrink: 1;
  justify-content: center;
}

#contact-form .file-upload .input-text-cont {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.25px;

  pointer-events: none;
}

#contact-form .r2 .t1 {
  color: var(--gray-500);

  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0;

  padding-bottom: 12px;

  border: 0px solid var(--safir-blue-50);
  border-bottom-width: 1px;
}

#contact-form .r2 .t2 {
  color: var(--safir-blue-900);

  font-weight: 400;
  font-size: 12px;
  line-height: 14.08px;
  letter-spacing: 0;
}

#contact-form .r2 .t2 span {
  font-weight: 700;
}

#contact-form .r3 button {
  min-width: 131px;
}

.text-600-lg {
  font-weight: 600;
  font-size: 24px;
  line-height: 28.15px;
  color: var(--safir-blue-900);
  letter-spacing: 0;
}

.text-400-lg {
  font-weight: 400;
  font-size: 24px;
  line-height: 28.15px;
  letter-spacing: 0;
  color: var(--safir-blue-900);
}

.text-700-lg {
  font-weight: 700;
  font-size: 24px;
  line-height: 28.15px;
  color: var(--safir-blue-900);
}

.text-400-sm {
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: var(--safir-blue-900);
}

.text-400-sm-14 {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--safir-blue-900);
  letter-spacing: 0;
}

.gray-text-400-sm {
  font-weight: 400;
  font-size: 12px;
  line-height: 14.08px;
  color: var(--gray-500);
}

.blue-text-400-sm {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--safir-blue-500);
  letter-spacing: 0.25px;
}

.form-section-title {
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  color: var(--gray-500);
  border-bottom: 1px solid var(--safir-blue-50);
  padding: 0 10px 12px 0;
}

.order-payment-cycle-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--safir-blue-100);
  border-radius: 12px;
  width: fit-content;
  min-width: 175px;
}

.order-payment-cycle-card:hover {
  background-color: var(--safir-blue-50);
}

.order-payment-cycle-card .payment-cycle-discount {
  font-weight: 400;
  font-size: 14px;
  line-height: 16.42px;
  text-align: justify;
  text-decoration: line-through;
}
.radio-input-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.radio-input-container label {
  font-weight: 400;
  font-size: 14px;
  line-height: 14.08px;
  color: var(--safir-blue-500);

  cursor: pointer;
}

.order-payment-cycle-card .payment-price {
  display: flex;
  flex-direction: column;
  padding-left: 22px;
}

.order-payment-cycle-card .payment-price h2 {
  cursor: pointer;
}

.paid-amount-container {
  background-color: var(--safir-blue-50);
  border-top: 1px solid var(--safir-blue-100);
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* position: sticky;
  top: 50%;
  z-index: 1; */
}

.paid-amount-button-container {
  display: flex;
  justify-content: end;
  align-items: center;
}

.paid-amount-button-container button {
  width: 131px;
}

.payment-amount {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 4px;

  flex-wrap: wrap;
}

.payment-amount h2 {
  font-weight: 400;
  font-size: 14px;
  line-height: 16.42px;
  color: var(--gray-500);

  text-align: left;
}

.payment-amount h3 {
  font-weight: 700;
  font-size: 14px;
  line-height: 16.42px;
  color: var(--safir-blue-500);
}

.page-title-search-container {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  max-width: 665px;
  padding: 8px 8px 8px 16px;
  border-radius: 8px;
  align-self: stretch;

  @media screen and (max-width: 768px) {
    padding: 8px 8px 8px 4px;
  }
}

.page-title-search-container input::placeholder {
  color: var(--gray-200);
  font-weight: 600;
  font-size: 16px;
  line-height: 18.77px;
}

.page-title-search-container input {
  color: var(--safir-blue-800);
  font-weight: 600;
  font-size: 16px;
  line-height: 18.77px;
  width: 100%;
  max-width: 100%;
}

.page-title-container button {
  min-width: 130px;
  justify-content: center;
  align-items: center;
  display: flex;
  gap: 4px;
}

.paid-amount-container-fixed {
  position: fixed;
  bottom: 0;
  background-color: var(--safir-blue-50);
  border-top: 1px solid var(--safir-blue-100);
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}

#stepper {
  padding: 34px 130px 16px 130px;

  background-color: rgb(247, 252, 255);
  border-radius: 12px;
}

#stepper .frame {
  display: flex;
  height: 55px;
}

#stepper .frame .step {
  width: 0px;

  position: relative;
  overflow: visible;
  border: 0px solid var(--safir-blue-100);
  border-top-width: 1px;
}

#stepper .frame .step:not(:last-child) {
  width: calc(100% / 3);
}

#stepper .frame .step .cont {
  position: absolute;

  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 5px;

  transform: translate(-50%, -18px);
  min-width: 100px;
}

#stepper .frame .step .cont .circle {
  width: 36px;
  height: 36px;

  border: 1px solid var(--safir-blue-100);
  border-radius: 36px;

  background-color: rgba(247, 252, 255, 1);

  font-weight: 600;
  font-size: 14px;
  line-height: 16.42px;
  letter-spacing: 0;
  text-align: center;

  color: var(--safir-blue-200);

  display: grid;
  place-content: center;
}

#stepper .circle img {
  display: none;
}

#stepper .frame .step .cont .text {
  color: var(--safir-blue-200);

  font-weight: 400;
  font-size: 12px;
  line-height: 14.08px;
  letter-spacing: 0;
  text-align: center;
}

#stepper .frame .step.target .cont .circle {
  border-color: var(--safir-blue-500);
  color: var(--safir-blue-500);
}

#stepper .frame .step.target .cont .text {
  color: var(--safir-blue-800);

  font-weight: 400;
  font-size: 12px;
  line-height: 14.08px;
  letter-spacing: 0;
  text-align: center;
}

#stepper .frame .step.checked {
  border-color: var(--safir-blue-500);
}

#stepper .frame .step.checked .cont .circle {
  border-color: var(--safir-blue-500);
  background-color: var(--safir-blue-500);
}

#stepper .frame .step.checked .cont .text {
  color: var(--safir-blue-500);
}

#stepper .step.checked .circle .t {
  display: none;
}
#stepper .step.checked .circle img {
  display: block;
}

@media screen and (max-width: 991px) {
  #stepper {
    border-radius: 0px;
    padding: 34px 32px;
  }
  #stepper .frame {
    max-height: 0px;
  }
  #stepper .text {
    display: none;
  }
}

.tab-container {
  display: flex;
  align-items: center;
  gap: 36px;
}

.tab-container h1 {
  font-weight: 400;
  font-size: 14px;
  line-height: 16.42px;
  letter-spacing: 0;
  text-align: center;
  color: var(--gray-300);
}

.tab-container h1.selected-tab {
  font-weight: 600;
  font-size: 14px;
  line-height: 16.42px;
  letter-spacing: 0;
  text-align: center;
  color: var(--safir-blue-900);
}

.cursor-pointer {
  cursor: pointer;
}

.not-active-tab {
  display: none;
}

.active-tab {
  display: block;
}

.icon-input-text-cont {
  position: relative;
  display: flex;
}

.icon-input-text-cont input[type="text"] {
  width: 100%;
  height: 52px;

  border: 1px solid var(--safir-blue-100);
  padding: 10px 35px;
  border-radius: 8px;

  outline: none;

  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.25px;
}

.icon-input-text-cont input[type="text"] + .placeholder {
  background-color: white;

  position: absolute;
  left: 37px;
  top: 50%;
  transform: translateY(-50%);

  color: var(--safir-blue-900);

  transition: all 0.3s ease;

  pointer-events: none;
}

.icon-input-text-cont + .helper-text {
  display: none;
  margin-top: 4px;

  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.25px;
}

.icon-input-text-cont input[type="text"]:focus + .placeholder {
  color: var(--safir-blue-500);

  background-color: rgba(255, 255, 255, 1);
  top: 0px;
  left: 12px;

  font-size: 10px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.25px;
  opacity: 100%;
  padding: 0 4px;
}

.icon-input-text-cont.error input[type="text"] {
  border-color: var(--red-500);
}

.icon-input-text-cont.error input[type="text"] + .placeholder {
  color: var(--red-500);
}

.icon-input-text-cont.error + .helper-text {
  color: var(--red-500);
  visibility: visible;
}

.icon-input-text-cont input[type="text"]:disabled {
  border-color: var(--gray-200);
}

.icon-input-text-cont input[type="text"]:disabled + .placeholder {
  color: var(--gray-200);
}

.icon-input-text-cont img {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.icon-input-text-cont input[type="password"] {
  width: 100%;
  height: 52px;

  border: 1px solid var(--safir-blue-100);
  padding: 10px 35px;
  border-radius: 8px;

  outline: none;

  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.25px;
}

.icon-input-text-cont input[type="password"] + .placeholder {
  background-color: white;

  position: absolute;
  left: 37px;
  top: 50%;
  transform: translateY(-50%);

  color: var(--safir-blue-900);

  transition: all 0.3s ease;

  pointer-events: none;
}

.icon-input-text-cont input[type="password"]:focus + .placeholder {
  color: var(--safir-blue-500);

  background-color: rgba(255, 255, 255, 1);
  top: 0px;
  left: 12px;

  font-size: 10px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.25px;
  opacity: 100%;
  padding: 0 4px;
}

.icon-input-text-cont.error input[type="password"] {
  border-color: var(--red-500);
}

.icon-input-text-cont.error input[type="password"] + .placeholder {
  color: var(--red-500);
}

.icon-input-text-cont input[type="password"]:disabled {
  border-color: var(--gray-200);
}

.icon-input-text-cont input[type="password"]:disabled + .placeholder {
  color: var(--gray-200);
}

.text-400-opacity-40 {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.25px;
  color: var(--safir-blue-900);
  opacity: 40%;
}

.warning-message {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.25px;
  color: var(--orange-500);
}

#pagination {
  display: flex;
  column-gap: 8px;
}

#pagination .cont {
  display: flex;
  column-gap: 4px;
}

#pagination .cont .item {
  min-width: 24px;
  padding: 4px 8px 4px 8px;
  height: 24px;

  border: 1px solid var(--safir-blue-200);
  border-radius: 4px;

  color: var(--safir-blue-900);

  font-weight: 400;
  font-size: 12px;
  line-height: 14.08px;
  letter-spacing: 0;

  cursor: pointer;
}

#pagination .cont .item.active {
  background-color: var(--safir-blue-300);
  border-color: var(--safir-blue-200);

  font-weight: 700;
  color: white;
}

#pagination .cont .item.nb {
  padding-right: 0;
  border: none;

  pointer-events: none;
}

#pagination .cont .item.disabled {
  border-color: var(--gray-200);
  opacity: 0.5;

  cursor: not-allowed;
}

#pagination .cont .item.disabled img {
  filter: invert(82%) sepia(3%) saturate(368%) hue-rotate(159deg)
    brightness(102%) contrast(88%);
}

.text-400-blue-300 {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0;
  color: var(--safir-blue-300);
}

.terms-of-use-cont label {
  width: 360px;
}

#page-title-section button {
  padding: 10px;
  width: 76px;
}

.confirm-popup {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed; /* Sayfa kaydırılsa bile sabit kalır */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* Tam ekran kaplama */
  background-color: color-mix(in srgb, var(--safir-blue-900) 80%, transparent);
  z-index: 2;
}

.confirm-popup.visible {
  display: flex;
}

.confirm-popup.not-visible {
  display: none;
}

.confirm-popup .confirm-popup-content {
  padding: 16px;
  border-radius: 12px;
  background-color: white;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.confirm-popup .confirm-popup-content img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--green-500);
  padding: 10px;
}

.confirm-popup .confirm-popup-content h2 {
  font-weight: 500;
  font-size: 20px;
  line-height: 23.46px;
  color: var(--safir-blue-900);
}

.confirm-popup .confirm-popup-content p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--gray-500);
}

.no-scrollbar {
  overflow-x: auto;
  -ms-overflow-style: none; /* IE ve Edge */
  scrollbar-width: none; /* Firefox */
}

.no-scrollbar::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.carousel-indicators [data-bs-target] {
  border-radius: 100%;
  background-color: var(--safir-blue-500);
  width: 8px;
  height: 8px;
}

.text-button {
  width: 160px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: none;
  background-color: transparent;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--safir-blue-900);
}

.filter-invert-1 {
  filter: invert(1) brightness(2);
}

.tab-cont {
  display: flex;

  column-gap: 36px;
}

@media (max-width: 545px) {
  .tab-cont {
    column-gap: 12px;
  }
}

.tab-cont a {
  text-decoration: none;
  color: inherit;
}

.tab-cont .tab {
  color: var(--gray-300);

  font-weight: 400;
  font-size: 14px;
  line-height: 16.42px;
  letter-spacing: 0;

  cursor: pointer;
}

.tab-cont .tab.selected {
  color: var(--safir-blue-900);

  font-weight: 600;
  font-size: 14px;
  line-height: 16.42px;
  letter-spacing: 0;
}

.why-safirnet-title {
  padding: 100px 0;

  @media screen and (max-width: 991px) {
    padding: 40px 0;
  }
}

.text-justify {
  text-align: justify;
}

.w-180 {
  width: 180px;
}

.prev-next-buttons a {
  color: inherit;
  text-decoration: none;
}

.mt-12 {
  margin-top: 12px;
}
