:root {
  --bs-body-font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --navbar-height: 0px;

}

/* GLOBAL STYLES
-------------------------------------------------- */
/* Padding below the footer and lighter body text */
body {
  padding-top: var(--navbar-height);

  /* padding-top: 5.6rem; */
  /* padding-bottom: 3rem; */
  color: rgb(var(--bs-tertiary-color-rgb));
}

.b-divider {
  width: 100%;
  height: 1.2rem;
  background-color: #0000001a;
  border: solid rgba(0, 0, 0, .15);
  border-width: 1px 0;
  box-shadow: inset 0 .5em 1.5em #0000001a, inset 0 .125em .5em #00000026;
}

/* NAVBAR
-------------------------------------------------- */
.navbar-brand img {
  max-height: clamp(46px, 8vw, 70px);
  height: auto;
  width: auto;
}

/* NAVBAR DROPDOWNS
-------------------------------------------------- */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu>.dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-submenu>.dropdown-toggle::after {
  content: "";
  margin-left: .5rem;
  border-top: .3em solid transparent;
  border-right: 0;
  border-bottom: .3em solid transparent;
  border-left: .3em solid currentColor;
  transition: transform 0.2s ease;
  /* yumuşak dönüş */

}

.dropdown-submenu>.dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(90deg);
}

/*
.dropdown-submenu>.dropdown-toggle::after {
  display: inline-block;
  margin-left: .5rem;
  vertical-align: middle;
  border-top: .3em solid transparent;
  border-right: 0;
  border-bottom: .3em solid transparent;
  border-left: .3em solid currentColor;
  float: right;
} */

.dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 100%;
  /* margin-left: .1rem; */
  /* margin-right: .1rem; */
  z-index: 2000;
}

/* $breakpoints: (
  sm: 36em, // 576px
  md: 48em, // 768px
  lg: 62em, // 992px
  xl: 75em  // 1200px
); */
@media (min-width: 36em) {
  .carousel-caption p {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.4;
  }

  /* .featurette-heading {
    font-size: 50px;
  } */
}

@media (min-width: 62em) {

}

@media (max-width: 48em) {

  /* .navbar-brand img {
    max-height: 46px;
  } */

  /* submenu accordion */
  .dropdown-submenu>.dropdown-menu {
    position: static !important;
    float: none;
    margin: 0;
    padding-left: 0.75rem;
  }

  .navbar .dropdown-menu {
    border: none;
    box-shadow: none;
    background-clip: padding-box;
  }

}