@charset "UTF-8";
/* Bu kısımda header top işlemleri yapılmakta */
.header-container {
  background-color: #112957;
  /* Bu kısımda search işlemi yapılmakta */
}
.header-container .header-container-top-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 0.75rem;
}
.header-container .header-container-top-left {
  display: flex;
  gap: 30px;
}
.header-container .header-container-top-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.header-container .header-container-top-left-text {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  opacity: 90%;
  text-decoration: none;
}
.header-container .header-container-top-left-text:hover {
  transition: all 0.3s ease;
  border-radius: 5px;
  opacity: 100%;
}
.header-container .header-container-line {
  margin-top: 4px;
  border: 1px solid;
  opacity: 0.3;
  height: 30px;
  color: #fff;
}
.header-container .header-container-language-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.85rem !important;
  font-weight: 500;
  opacity: 90%;
  width: 34px;
  height: 31px;
  color: #fff !important;
  border-color: transparent !important;
  padding: 17px;
}
.header-container .header-container-language-text:hover {
  opacity: 100%;
  background-color: #002A54;
  transition: 500ms all;
}
.header-container .header-container-top-right-language {
  display: flex;
  gap: 8px;
}
.header-container .header-container-top-right-language button {
  background: none;
  color: #fff;
  opacity: 90%;
  border: none;
  outline: none;
}
.header-container .header-container-top-right-language button:hover {
  opacity: 100%;
}
.header-container .header-container-top-right-language .vr {
  background-color: white;
}
.header-container #header-search {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-container #header-search i {
  color: #dbdada;
}
.header-container #header-search i:hover {
  background-color: #005aa3;
  transition: all 0.5s;
}
.header-container #header-search .search {
  position: relative;
  width: 35px;
  height: 35px;
  background-color: #fff;
  border-radius: var(--bs-border-radius) !important;
  transition: 0.5s;
  overflow: hidden;
  border: 1px solid white;
}
.header-container #header-search .search.active {
  width: 300px;
}
.header-container #header-search .search .form-control {
  border: none;
}
.header-container #header-search .search .icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  height: 35px;
  background-color: #112958;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  cursor: pointer;
}
.header-container #header-search .search .input {
  width: 300px;
  height: 35px;
  right: 35px;
  justify-content: center;
  align-items: center;
  background: #fdfbfb;
}
.header-container #header-search .search .input input {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 10px;
}
.header-container #header-search .search .clear {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  left: 80%;
  background-color: #fdfbfb;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-container #header-search .search .clear::before, .header-container #header-search .search .clear::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 15px;
  background-color: #999;
}
.header-container #header-search .search .clear::before {
  transform: rotate(45deg);
}
.header-container #header-search .search .clear::after {
  transform: rotate(315deg);
}

/* Bu kısımda bottombar işlemleri yapılmaktadır */
.header-container-bottom {
  position: relative;
  top: 0;
  z-index: 1000;
  width: 100%;
  background-color: white;
  box-shadow: 0 1px 0px rgba(1, 1, 1, 0.1);
  /* Bu kısımda bottombar çizgi işlemleri yapılmakta */
}
.header-container-bottom .header-container-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px;
}
.header-container-bottom .header-container-bottom-content .bottom-left-image a {
  display: flex;
}
.header-container-bottom .header-container-bottom-content #navbarbottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-container-bottom .header-container-bottom-logo-left {
  max-width: 144px;
  height: auto;
}
.header-container-bottom .header-bottom-fill-icon {
  font-size: 14px;
  color: gray;
}
.header-container-bottom .dropdown-content-group-item:hover .header-bottom-fill-icon {
  transition: transform 0.3s ease;
  transform: rotate(180deg);
  color: #0d1a35;
}
.header-container-bottom .header-container-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-container-bottom .header-container-dropdown-language {
  height: 36px;
  background-color: white !important;
  border: none !important;
}
.header-container-bottom .header-container-dropdown-language .btn:focus {
  box-shadow: 0 0 5px 3px rgba(0, 150, 255, 0.3);
  border-color: transparent !important;
}
.header-container-bottom .header-container-dropdown-language-menu {
  min-width: 100px !important;
}
.header-container-bottom .header-dropdown-item {
  font-size: 16px;
  opacity: 95%;
}
.header-container-bottom .header-dropdown-item:active {
  background-color: #ebeff1;
  color: black;
}
.header-container-bottom .header-dropdown-item:hover {
  background-color: #ebeff1;
  color: white;
  border-radius: 5px;
  transition: background-color 0.5s ease;
}
.header-container-bottom .header-container-dropdown-toggle {
  font-size: 1.063;
  opacity: 95%;
  font-weight: 500;
}
.header-container-bottom .header-container-dropdown-toggle:hover {
  color: #0d1a35;
}
.header-container-bottom .header-dropdown-toggle {
  font-size: 16px;
}
.header-container-bottom .header-dropdown-toggle:hover {
  background-color: #ebeff1;
  color: white;
  border-radius: 5px;
  transition: background-color 0.5s ease;
}
.header-container-bottom .dropdown-menu.header-dropdown-menu li:hover {
  background-color: #ebeff1;
}
.header-container-bottom .nav-item.dropdown .dropdown-menu.header-dropdown-menu li:hover > a {
  background-color: #ebeff1;
  color: black !important;
}
.header-container-bottom .header-dropdown-toggle-icon {
  font-size: 19px;
}
.header-container-bottom .header-dropdown:hover > .header-dropdown-toggle > .header-dropdown-toggle-icon {
  transform: rotate(180deg);
}
.header-container-bottom .header-dropdown-menu-sub > .dropend.dropdown:hover > .dropdown-item > .header-dropdown-toggle-icon {
  transform: rotate(180deg);
}
.header-container-bottom .header-dropdown-menu-sub .dropdown-item:hover > .header-dropdown-toggle-icon {
  transform: rotate(180deg);
}
.header-container-bottom .header-container-dropdown-language {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: white;
  outline-color: aqua !important;
}
.header-container-bottom .header-dropdown-menu-sub {
  display: none;
  position: absolute;
  top: -60px;
  left: 98.5%;
  margin-left: 0.125rem;
}
.header-container-bottom .dropdown:hover .header-dropdown-menu {
  display: block;
}
.header-container-bottom .dropdown-item.dropdown-toggle:hover + .header-dropdown-menu-sub,
.header-container-bottom .header-dropdown-menu-sub:hover {
  display: block;
}
.header-container-bottom .dropdown-toggle::after {
  display: none !important;
}
.header-container-bottom .header-offcanvas {
  display: flex;
  align-items: center;
  justify-content: end;
  right: 2rem;
  max-width: 350px !important;
}

/* bu kısımda offcanvas işlemi yapılmakta */
.offcanvas-body {
  display: block;
  width: 100%;
  padding: 0px !important;
  overflow: hidden;
}
.offcanvas-body .header-offcanvas-content {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 1.2rem;
}
.offcanvas-body .header-offcanvas-logo {
  height: auto;
  max-width: 160px;
}
.offcanvas-body .header-offcanvas-close-icon {
  font-size: 32px;
}
.offcanvas-body .header-offcanvas-content-close {
  display: flex;
  align-items: center;
  justify-content: center;
}
.offcanvas-body .header-offcanvas-close {
  display: flex;
  align-items: center;
  justify-content: center;
}
.offcanvas-body .header-offcanvas-content-close .btn:focus, .offcanvas-body .btn:active {
  outline: none !important;
  box-shadow: none !important;
  border-color: none;
}
.offcanvas-body .header-offcanvas-content-close .btn {
  --bs-btn-border-color: none;
}
.offcanvas-body .header-offcanvas .btn:focus, .offcanvas-body .btn:active {
  outline: none !important;
  box-shadow: none !important;
}
.offcanvas-body .header-offcanvas .btn {
  border: none !important;
}
.offcanvas-body .header-middle-line {
  border: 0.1rem solid black;
  opacity: 5%;
}
.offcanvas-body .header-offcanvas-list-accordion {
  padding-top: 20px;
}
.offcanvas-body .header-offcanvas-list-accordion ul {
  padding-left: 10px;
}
.offcanvas-body .header-offcanvas-dropdown .btn:focus {
  box-shadow: 0 0 5px 3px rgba(0, 150, 255, 0.5);
  border-color: transparent !important;
}
.offcanvas-body .header-offcanvas-dropdown-menu {
  min-width: 75px !important;
}
.offcanvas-body .header-offcanvas-dropdown {
  display: flex;
  align-items: center;
  justify-content: center;
}
.offcanvas-body .header-btn-outline {
  color: #002A54;
  border-color: #002A54;
}
.offcanvas-body .header-offcanvas-search {
  margin: 0px 20px;
  padding-bottom: 20px;
}
.offcanvas-body .header-list-search {
  display: flex;
  gap: 10px;
}
.offcanvas-body .dropdown-toggle::after {
  display: none !important;
}

/* Bu kısımda pagination işlemleri yapılmakta */
.body-pagination-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.body-pagination-container .body-pagination {
  text-align: center;
  margin: 30px 0px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  box-shadow: 0px 0px 49px 0px rgba(243, 241, 241, 0.08) !important;
  border-radius: 10px;
}
.body-pagination-container .page-item.active .page-link {
  display: inline-block;
  color: #052c65 !important;
  font-size: 1.1rem !important;
  border: 1px solid #e7e7e7 !important;
  border-radius: 100% !important;
  width: 30px;
}
.body-pagination-container .page-item.disable .page-link {
  color: #bdbdbd !important;
}
.body-pagination-container .page-item .page-link {
  transition: none !important;
}
.body-pagination-container .body-pagination li {
  display: inline-block;
  color: #6c757d;
}
.body-pagination-container .body-pagination li:hover {
  display: inline-block;
  color: #052c65;
}
.body-pagination-container .page-item .page-number:hover {
  display: inline-block;
  border: 0.1rem solid #e7e7e7 !important;
  border-radius: 100% !important;
  outline: none;
  width: 30px;
  transition: all 0.3s ease;
}
.body-pagination-container .page-item .page-number {
  height: 30px; /* Sabit yükseklik */
}
.body-pagination-container .body-pagination li a {
  text-decoration: none;
  font-size: 1rem;
  line-height: 30px;
  font-weight: 500;
}
.body-pagination-container .body-pagination li a:hover {
  transform: scale(1.1) !important;
}
.body-pagination-container .body-pagination-previous-page, .body-pagination-container .body-pagination-next-page, .body-pagination-container .body-pagination-first-page,
.body-pagination-container .body-pagination-last-page {
  width: 30px;
  cursor: pointer;
  transition: 0.3s ease;
}
.body-pagination-container .body-pagination-first-page:hover {
  transform: scale(1.1) !important;
}
.body-pagination-container .body-pagination-previous-page:hover {
  transform: scale(1.1) !important;
}
.body-pagination-container .body-pagination-next-page:hover {
  transform: scale(1.1) !important;
}
.body-pagination-container .body-pagination-last-page:hover {
  transform: scale(1.1) !important;
}
.body-pagination-container .body-pagination-current-page,
.body-pagination-container .body-pagination-dots {
  color: #6c757d;
  width: 36px;
  cursor: pointer;
}
.body-pagination-container .body-pagination-current-page,
.body-pagination-container .body-pagination-dots:hover {
  transition: transform 0.3s ease;
  transform: scale(1.2) !important;
  color: #052c65;
}

.body-pagination-container-small-screen {
  display: flex;
  align-items: center;
  justify-content: center;
}
.body-pagination-container-small-screen .body-pagination-small-screen {
  text-align: center;
  margin: 30px 30px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.body-pagination-container-small-screen .body-pagination-small-screen li {
  display: inline-block;
  color: #6c757d;
}
.body-pagination-container-small-screen .body-pagination, .body-pagination-container-small-screen .body-pagination-small-screen {
  text-align: center;
  margin: 30px 0px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  box-shadow: 0px 0px 49px 0px rgba(243, 241, 241, 0.08) !important;
  border-radius: 10px;
}
.body-pagination-container-small-screen .body-pagination-small-screen li {
  display: inline-block;
  color: #6c757d;
}
.body-pagination-container-small-screen .body-pagination-small-screen li {
  display: inline-block;
  color: #6c757d;
}
.body-pagination-container-small-screen .body-pagination-small-screen li:hover {
  display: inline-block;
  color: #052c65;
}
.body-pagination-container-small-screen .body-pagination-small-screen li a {
  text-decoration: none;
  font-size: 1rem;
  line-height: 30px;
  font-weight: 500;
}
.body-pagination-container-small-screen .body-pagination-small-screen li a:hover {
  transform: scale(1.1) !important;
}
.body-pagination-container-small-screen .body-pagination-first-page-small-screen, .body-pagination-container-small-screen .body-pagination-previous-page-small-screen, .body-pagination-container-small-screen .body-pagination-next-page-small-screen, .body-pagination-container-small-screen .body-pagination-last-page-small-screen {
  width: 30px;
  cursor: pointer;
  transition: 0.3s ease;
}
.body-pagination-container-small-screen .body-pagination-first-page-small-screen:hover {
  transform: scale(1.1) !important;
}
.body-pagination-container-small-screen .body-pagination-previous-page-small-screen:hover {
  transform: scale(1.1) !important;
}
.body-pagination-container-small-screen .body-pagination-next-page-small-screen:hover {
  transform: scale(1.1) !important;
}
.body-pagination-container-small-screen .body-pagination-last-page-small-screen:hover {
  transform: scale(1.1) !important;
}

/* Bu kısımda body ve başlık işlemi yapılmakta */
.body-container {
  min-height: 750px;
  padding-bottom: 7.5rem;
}
.body-container .body-title {
  display: flex;
  text-align: justify;
  padding: 3rem;
  margin-bottom: 40px;
  background-color: #102a5b;
}
.body-container .body-container-title {
  display: flex;
  align-items: center;
  justify-content: center;
}
.body-container .body-container-text {
  font-weight: 600;
  font-size: 1.5rem;
  color: #fff;
  opacity: 90%;
  text-align: justify;
}
.body-container .body-container-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.body-container .body-container-logo-item {
  padding: 0px 0px 15px 0px;
}
.body-container .body-container-content {
  margin-top: 50px;
}

/* Bu kısımda arama sonucu yapılmakta */
.body-content-search {
  margin-bottom: 40px;
}
.body-content-search .body-content-list-search {
  border-bottom: 1px;
  box-shadow: 0 5px 25px rgba(1, 1, 1, 0.1);
  padding: 20px;
}
.body-content-search .body-content-search-item {
  text-decoration: none;
  color: inherit;
}
.body-content-search .body-content-search-title {
  color: rgb(1, 30, 56);
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  opacity: 95%;
}
.body-content-search .body-content-search-text {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.body-content-search .body-content-search-icon {
  display: flex;
  justify-content: end;
  flex-direction: row;
  font-size: 18px;
}
.body-content-search .body-content-search-item:hover .body-content-search-icon {
  color: #005aa3;
}
.body-content-search .list-group-item-action:hover {
  background-color: #f3f7f9;
}
.body-content-search .list-group .list-group-item:last-child {
  border: none !important;
}
.body-content-search .body-container-search-box {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0.5rem;
  padding-bottom: 2rem;
}
.body-content-search .body-container-search-text {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px;
  opacity: 95%;
  font-weight: 600;
  font-size: 1rem;
  color: #002A54;
}
.body-content-search .body-container-search-input {
  width: 20rem;
  height: 1.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: black;
  opacity: 75%;
  padding: 0px 10px;
  border: none;
  outline: none;
  border-radius: 8px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.body-content-search .body-content-list-search .list-group-item:nth-child(5n) {
  border: none;
}

.body-contaiener-search-error {
  max-height: 700px;
  height: 700px;
}
.body-contaiener-search-error .body-content-alert {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
  padding: 15px;
}
.body-contaiener-search-error .body-content-alert-body {
  display: block;
  align-items: center;
}
.body-contaiener-search-error .body-content-searh-error-icon {
  font-size: 20px;
}
.body-contaiener-search-error .body-content-searh-error-text {
  font-weight: 500;
}
.body-contaiener-search-error .body-content-search-error {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Bu kısımda error yapılmakta */
.body-container-error {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.body-container-error .body-content-error {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.body-container-error .body-card-error {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  align-items: center;
  padding: 150px 20px;
  text-align: center;
}
.body-container-error .card-body-error-text {
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 10px;
  max-width: 600px;
  width: 100%;
}
.body-container-error .card-body-error-search-input-box {
  position: relative;
}
.body-container-error .card-body-error-search-input-box i {
  position: absolute;
  right: 13px;
  top: 15px;
  color: rgb(104, 104, 104);
}
.body-container-error .card-body-error-search-form {
  height: 50px;
  background-color: rgba(228, 228, 228, 0.4117647059);
}
.body-container-error .card-body-error-search-form:hover {
  background-color: rgba(238, 238, 238, 0.4117647059);
}
.body-container-error .card-body-error-search-form:focus {
  background-color: rgba(238, 238, 238, 0.4117647059);
  box-shadow: none;
  border-color: #eee;
}
.body-container-error .body-container-error-bottom {
  color: black;
  font-size: medium;
  font-weight: 500;
  margin: 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 10px 25px;
  background-color: white;
  text-decoration: none;
}
.body-container-error .body-container-error-bottom:hover {
  background-color: rgb(39, 60, 102);
  color: white;
}
.body-container-error .error-not-found-icon {
  font-size: 50px;
}
.body-container-error .card-body-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.body-container-error .card-body-error-search {
  display: flex;
  justify-content: center;
}
.body-container-error .card-body-error-icon {
  font-size: 50px;
  margin-top: 15px;
}
.body-container-error .body-card-error-image {
  width: 280px;
}

#error404 {
  text-align: center;
  font-family: sans-serif;
  align-content: center;
  min-height: 70vh;
}
#error404 h1 {
  font-size: 14vw;
  opacity: 0.8;
}
#error404 h2 {
  font-size: 5vw;
  opacity: 0.8;
}
#error404 p {
  opacity: 0.8;
  font-size: 2vw;
  font-weight: bold;
}

/* Bu kısımda loader yapılmakta */
.body-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.body-loader .body-content-loader {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.body-loader .body-content-loader-item {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 66%, #04335e 100%);
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.body-loader .body-content-loader-image {
  position: absolute;
  background-color: #ebeff1;
  border-radius: 100%;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: pulse 2s infinite;
}
.body-loader .body-content-loader-item::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 5px 25px rgba(1, 1, 1, 0.2);
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.body-loader .body-content-loader-image-datail {
  width: auto;
  height: 43px;
  margin: 0;
}
@keyframes pulse {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(0.9);
  }
}

footer {
  background-size: cover;
  color: white;
  min-width: -moz-fit-content;
  min-width: fit-content;
  position: relative;
  z-index: 1;
  font-family: sans-serif;
  justify-content: center;
}
footer .footer-container {
  padding: 0.9rem 0;
}

.footer-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.footer-bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* Bu kısımda footer içeriği yapıldı  */
.footer-container .footer-content, .footer-container-small-screen .footer-content {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
}
.footer-container .footer-content-text, .footer-container-small-screen .footer-content-text {
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
  line-height: 1.2;
  text-decoration: none;
}
.footer-container .footer-content-text:hover, .footer-container-small-screen .footer-content-text:hover {
  color: #888888;
}
.footer-container .footer-content-header, .footer-container-small-screen .footer-content-header {
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 30px;
  padding: 0px 10px;
}
.footer-container .footer-content-item-menu, .footer-container-small-screen .footer-content-item-menu {
  font-size: 1rem;
  font-weight: 500;
  opacity: 50%;
  opacity: 100%;
}
.footer-container .footer-content-item-menu .footer-logo-container, .footer-container-small-screen .footer-content-item-menu .footer-logo-container {
  gap: 1.5rem;
  display: flex;
  flex-direction: column;
}
.footer-container .footer-content-item-menu ul, .footer-container-small-screen .footer-content-item-menu ul {
  list-style: none;
  padding: 0px 10px;
}
.footer-container .footer-content-item-menu ul li, .footer-container-small-screen .footer-content-item-menu ul li {
  padding: 5px 0px;
}
.footer-container .footer-content-item-menu ul li a, .footer-container-small-screen .footer-content-item-menu ul li a {
  text-decoration: none;
}
.footer-container .footer-content-item-logo-menu, .footer-container-small-screen .footer-content-item-logo-menu {
  margin-top: 30px;
}
.footer-container .footer-content-item-logo-menu ul, .footer-container-small-screen .footer-content-item-logo-menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0px 10px;
  gap: 2.5rem;
}
.footer-container .footer-content-item-logo-menu ul li, .footer-container-small-screen .footer-content-item-logo-menu ul li {
  padding: 5px 0px;
}
.footer-container .footer-content-item-logo-menu ul li a, .footer-container-small-screen .footer-content-item-logo-menu ul li a {
  text-decoration: none;
}
.footer-container .footer-item-content, .footer-container-small-screen .footer-item-content {
  color: #fff;
  display: flex;
  font-size: 1rem;
  gap: 15px;
  padding: 5px 0px;
}
.footer-container .footer-item-content .footer-item-content-text, .footer-container-small-screen .footer-item-content .footer-item-content-text {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  opacity: 95%;
}
.footer-container .footer-content-item a, .footer-container-small-screen .footer-content-item a {
  text-decoration: none;
}
.footer-container .footer-logo-content, .footer-container-small-screen .footer-logo-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-container .footer-logo-content, .footer-container-small-screen .footer-logo-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-container .footer-content-logo, .footer-container-small-screen .footer-content-logo {
  max-width: 165px;
}
.footer-container .footer-top-logo, .footer-container-small-screen .footer-top-logo {
  width: 170px;
  height: 120px;
}
.footer-container .footer-middle-line, .footer-container-small-screen .footer-middle-line {
  border-bottom: 1px solid black;
  opacity: 10%;
}
.footer-container .footer-bottom, .footer-container-small-screen .footer-bottom {
  display: flex;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}
.footer-container .footer-bottom-logo, .footer-container-small-screen .footer-bottom-logo {
  margin-bottom: 30px;
}
.footer-container .footer-bottom-copyright, .footer-container-small-screen .footer-bottom-copyright {
  display: flex;
  text-align: center;
  color: #fff;
  font-size: 1rem;
}
.footer-container .footer-bottom-copyright-text, .footer-container-small-screen .footer-bottom-copyright-text {
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
}
.footer-container .footer-bottom-social-media, .footer-container-small-screen .footer-bottom-social-media {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.footer-container .footer-bottom-social-media a, .footer-container-small-screen .footer-bottom-social-media a {
  color: #fff;
  font-size: 1.5rem;
  transition: 500ms all;
}
.footer-container .footer-bottom-social-media-item-mail:hover, .footer-container-small-screen .footer-bottom-social-media-item-mail:hover {
  color: black;
}
.footer-container .footer-bottom-social-media-item-facebook:hover, .footer-container-small-screen .footer-bottom-social-media-item-facebook:hover {
  color: #0865ff;
}
.footer-container .footer-bottom-social-media-item-instagram:hover, .footer-container-small-screen .footer-bottom-social-media-item-instagram:hover {
  color: #9e19a5;
}
.footer-container .footer-bottom-social-media-item-x:hover, .footer-container-small-screen .footer-bottom-social-media-item-x:hover {
  color: black;
}
.footer-container .footer-bottom-social-media-item-youtube:hover, .footer-container-small-screen .footer-bottom-social-media-item-youtube:hover {
  color: red;
}
.footer-container .footer-bottom-social-media-item-linkedln:hover, .footer-container-small-screen .footer-bottom-social-media-item-linkedln:hover {
  color: #126bc4;
}
.footer-container .footer-bottom-small-screen, .footer-container-small-screen .footer-bottom-small-screen {
  display: block;
  padding-top: 20px;
  padding-bottom: 20px;
}
.footer-container .footer-content-header-small-screen, .footer-container-small-screen .footer-content-header-small-screen {
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
  margin-top: 60px;
  padding: 0px 10px;
}
.footer-container .footer-content-small-screen, .footer-container-small-screen .footer-content-small-screen {
  display: block;
  justify-content: space-between;
}
.footer-container .footer-middle-line-small-screen, .footer-container-small-screen .footer-middle-line-small-screen {
  border-bottom: 1px solid white;
  opacity: 10%;
  padding-top: 40px;
}
.footer-container .footer-bottom-logo-small-screen, .footer-container-small-screen .footer-bottom-logo-small-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
}
.footer-container .footer-bottom-logo-content-small-screen, .footer-container-small-screen .footer-bottom-logo-content-small-screen {
  width: 160px;
}
.footer-container .footer-bottom-logo-2-small-screen, .footer-container-small-screen .footer-bottom-logo-2-small-screen {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-container .footer-content-item-menu-small-screen, .footer-container-small-screen .footer-content-item-menu-small-screen {
  padding: 0px 10px;
}
.footer-container .footer-content-item-menu-small-screen a, .footer-container-small-screen .footer-content-item-menu-small-screen a {
  text-decoration: none;
}
.footer-container .footer-bottom-social-media-small-screen, .footer-container-small-screen .footer-bottom-social-media-small-screen {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
.footer-container .footer-bottom-social-media-small-screen a, .footer-container-small-screen .footer-bottom-social-media-small-screen a {
  color: #fff;
  font-size: 1.5rem;
  transition: 500ms all;
}
.footer-container .footer-bottom-copyright-small-screen, .footer-container-small-screen .footer-bottom-copyright-small-screen {
  display: flex;
  text-align: center;
  justify-content: center;
  margin-top: 25px;
}

.footer-container-main-page, .footer-container-small-screen-main-page {
  background-color: #fcfcfc;
}
.footer-container-main-page .footer-content, .footer-container-small-screen-main-page .footer-content {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
}
.footer-container-main-page .footer-content-text, .footer-container-small-screen-main-page .footer-content-text {
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
  line-height: 1.2;
  text-decoration: none;
}
.footer-container-main-page .footer-content-text:hover, .footer-container-small-screen-main-page .footer-content-text:hover {
  color: #888888;
}
.footer-container-main-page .footer-content-header, .footer-container-small-screen-main-page .footer-content-header {
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 30px;
  padding: 0px 10px;
}
.footer-container-main-page .footer-content-item-menu, .footer-container-small-screen-main-page .footer-content-item-menu {
  font-size: 1rem;
  font-weight: 500;
  opacity: 50%;
  opacity: 95%;
}
.footer-container-main-page .footer-content-item-menu ul, .footer-container-small-screen-main-page .footer-content-item-menu ul {
  list-style: none;
  padding: 0px 10px;
}
.footer-container-main-page .footer-content-item-menu ul li, .footer-container-small-screen-main-page .footer-content-item-menu ul li {
  padding: 5px 0px;
}
.footer-container-main-page .footer-content-item-menu ul li a, .footer-container-small-screen-main-page .footer-content-item-menu ul li a {
  text-decoration: none;
}
.footer-container-main-page .footer-content-item-logo-menu, .footer-container-small-screen-main-page .footer-content-item-logo-menu {
  margin-top: 30px;
}
.footer-container-main-page .footer-content-item-logo-menu ul, .footer-container-small-screen-main-page .footer-content-item-logo-menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0px 10px;
}
.footer-container-main-page .footer-content-item-logo-menu ul li, .footer-container-small-screen-main-page .footer-content-item-logo-menu ul li {
  padding: 5px 0px;
}
.footer-container-main-page .footer-content-item-logo-menu ul li a, .footer-container-small-screen-main-page .footer-content-item-logo-menu ul li a {
  text-decoration: none;
}
.footer-container-main-page .footer-item-content, .footer-container-small-screen-main-page .footer-item-content {
  color: #fff;
  display: flex;
  font-size: 1rem;
  gap: 15px;
  padding: 5px 0px;
}
.footer-container-main-page .footer-item-content-text, .footer-container-small-screen-main-page .footer-item-content-text {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  opacity: 95%;
}
.footer-container-main-page .footer-logo-content, .footer-container-small-screen-main-page .footer-logo-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-container-main-page .footer-content-logo, .footer-container-small-screen-main-page .footer-content-logo {
  width: 250px;
}
.footer-container-main-page .footer-top-logo, .footer-container-small-screen-main-page .footer-top-logo {
  width: 170px;
  height: 120px;
}
.footer-container-main-page .footer-middle-line, .footer-container-small-screen-main-page .footer-middle-line {
  border-bottom: 1px solid black;
  opacity: 10%;
}
.footer-container-main-page .footer-bottom, .footer-container-small-screen-main-page .footer-bottom {
  display: flex;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}
.footer-container-main-page .footer-bottom-logo, .footer-container-small-screen-main-page .footer-bottom-logo {
  margin-bottom: 30px;
}
.footer-container-main-page .footer-bottom-copyright, .footer-container-small-screen-main-page .footer-bottom-copyright {
  display: flex;
  text-align: center;
  color: #fff;
  font-size: 1rem;
}
.footer-container-main-page .footer-bottom-copyright-text, .footer-container-small-screen-main-page .footer-bottom-copyright-text {
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
}
.footer-container-main-page .footer-bottom-social-media, .footer-container-small-screen-main-page .footer-bottom-social-media {
  display: flex;
  gap: 12px;
  justify-content: end;
}
.footer-container-main-page .footer-bottom-social-media a, .footer-container-small-screen-main-page .footer-bottom-social-media a {
  color: #fff;
  font-size: 1.5rem;
  transition: 500ms all;
}
.footer-container-main-page .footer-bottom-social-media-item-mail:hover, .footer-container-small-screen-main-page .footer-bottom-social-media-item-mail:hover {
  color: black;
}
.footer-container-main-page .footer-bottom-social-media-item-facebook:hover, .footer-container-small-screen-main-page .footer-bottom-social-media-item-facebook:hover {
  color: #0865ff;
}
.footer-container-main-page .footer-bottom-social-media-item-instagram:hover, .footer-container-small-screen-main-page .footer-bottom-social-media-item-instagram:hover {
  color: #9e19a5;
}
.footer-container-main-page .footer-bottom-social-media-item-x:hover, .footer-container-small-screen-main-page .footer-bottom-social-media-item-x:hover {
  color: black;
}
.footer-container-main-page .footer-bottom-social-media-item-youtube:hover, .footer-container-small-screen-main-page .footer-bottom-social-media-item-youtube:hover {
  color: red;
}
.footer-container-main-page .footer-bottom-social-media-item-linkedln:hover, .footer-container-small-screen-main-page .footer-bottom-social-media-item-linkedln:hover {
  color: #126bc4;
}
.footer-container-main-page .footer-bottom-small-screen, .footer-container-small-screen-main-page .footer-bottom-small-screen {
  display: block;
  padding-top: 20px;
  padding-bottom: 20px;
}
.footer-container-main-page .footer-content-header-small-screen, .footer-container-small-screen-main-page .footer-content-header-small-screen {
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
  margin-top: 60px;
  padding: 0px 10px;
}
.footer-container-main-page .footer-content-small-screen, .footer-container-small-screen-main-page .footer-content-small-screen {
  display: block;
  justify-content: space-between;
}
.footer-container-main-page .footer-middle-line-small-screen, .footer-container-small-screen-main-page .footer-middle-line-small-screen {
  border-bottom: 1px solid white;
  opacity: 10%;
  padding-top: 40px;
}
.footer-container-main-page .footer-bottom-logo-small-screen, .footer-container-small-screen-main-page .footer-bottom-logo-small-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
}
.footer-container-main-page .footer-bottom-logo-content-small-screen, .footer-container-small-screen-main-page .footer-bottom-logo-content-small-screen {
  width: 160px;
}
.footer-container-main-page .footer-bottom-logo-2-small-screen, .footer-container-small-screen-main-page .footer-bottom-logo-2-small-screen {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-container-main-page .footer-content-item-menu-small-screen, .footer-container-small-screen-main-page .footer-content-item-menu-small-screen {
  padding: 0px 10px;
}
.footer-container-main-page .footer-content-item-menu-small-screen a, .footer-container-small-screen-main-page .footer-content-item-menu-small-screen a {
  text-decoration: none;
}
.footer-container-main-page .footer-bottom-social-media-small-screen, .footer-container-small-screen-main-page .footer-bottom-social-media-small-screen {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}
.footer-container-main-page .footer-bottom-social-media-small-screen a, .footer-container-small-screen-main-page .footer-bottom-social-media-small-screen a {
  color: #fff;
  font-size: 1.5rem;
  transition: 500ms all;
}
.footer-container-main-page .footer-bottom-copyright-small-screen, .footer-container-small-screen-main-page .footer-bottom-copyright-small-screen {
  display: flex;
  text-align: center;
  justify-content: center;
  margin-top: 25px;
}

/* Burada sabit sayfa yapılmakta */
.body-container-page {
  box-shadow: 0 5px 25px rgba(1, 1, 1, 0.1);
  min-height: 400px;
  padding: 2rem 1.5rem 2rem 1.5rem;
  display: block;
  align-items: center;
}
.body-container-page p {
  text-align: justify;
}
.body-container-page a {
  text-decoration: none;
  color: inherit;
}
.body-container-page .body-page-title {
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.1;
  opacity: 80%;
  text-align: justify;
  padding: 0rem 0rem 2rem 0rem;
  margin: 0px;
}
.body-container-page .body-page-text {
  display: flex;
  align-items: start;
  opacity: 95%;
  text-align: justify;
}
.body-container-page .body-table-text {
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 2rem 2rem;
  opacity: 95%;
}
.body-container-page .table > :not(caption) > * > * {
  padding: 0.8rem 1rem;
}
.body-container-page .body-table {
  border: 1px solid rgba(255, 247, 247, 0.9);
  border-radius: 5px;
  margin: 1rem 0rem;
}
.body-container-page .body-table-title {
  background-color: #e9ecef !important;
  opacity: 80%;
}
.body-container-page .body-table-top {
  text-transform: uppercase;
  text-align: center;
}
.body-container-page .body-table-title-detay {
  opacity: 70%;
  align-items: center;
  font-size: 1rem;
}
.body-container-page .body-table-text-detay {
  text-align: center;
  padding: 15px;
  font-weight: 500;
  opacity: 80%;
  font-size: 1rem;
}
.body-container-page .body-table-text-detay-rowspan {
  text-align: center;
  padding: 15px;
  vertical-align: middle;
  font-weight: 500;
  opacity: 100%;
  background-color: white;
  font-size: 1rem;
}
.body-container-page .table-striped > tbody > tr:nth-of-type(odd) > .body-table-text-detay-rowspan {
  --bs-table-bg-type: white;
}
.body-container-page .table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.body-container-page .table-responsive table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
}
.body-container-page .body-page-person-title {
  display: flex;
  justify-content: end;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0rem;
}
.body-container-page .body-page-person-name {
  display: flex;
  justify-content: end;
  font-weight: 500;
  font-size: 1.1rem;
  margin: 0rem;
}
.body-container-page .body-page-person-email {
  display: flex;
  justify-content: end;
  font-size: 1.1rem;
  padding-bottom: 2rem;
  margin: 0rem;
}
.body-container-page .body-content-list-group {
  list-style-type: disc;
  padding: 0rem 0rem 1rem 2rem;
  line-height: 1rem;
}
.body-container-page .body-content-list-group .body-content-list-group-item {
  display: list-item;
  position: relative;
  border: none;
  opacity: 95%;
}
.body-container-page .body-content-lightbox-image {
  width: 100%;
}

/* Bu kısımda iletişim yapılmakta */
.body-container-contact-page .body-page-text-content {
  text-decoration: none !important;
  color: inherit !important;
}
.body-container-contact-page .body-page-text {
  padding-left: 0rem;
  display: block;
  align-items: center;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 75%;
  margin-bottom: 0.6rem;
}
.body-container-contact-page .body-page-map {
  margin-bottom: 2rem;
}

/* Bu kısımda yukarı taşıma butonu yapılmakta */
#scrollTopButton {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 1000;
}

#scrollTopButton button {
  border-radius: 100%;
  background: rgb(0, 54, 87);
  color: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s linear;
}

#scrollTopButton button:hover {
  transition: background-color 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 2px;
  transform: translateY(-5px);
  background-color: rgb(35, 87, 131);
}

/* Bu kısımda slider işlemi yapılmakta */
.body-content-slider-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f0f3f5;
  color: #f1f1f1;
  height: auto;
}
.body-content-slider-top .swiper-button-next, .body-content-slider-top .swiper-button-prev {
  color: black;
  border-radius: 100%;
  padding: 20px;
  background-color: white;
  position: absolute;
  bottom: 0px;
}
.body-content-slider-top .swiper-button-next::after, .body-content-slider-top .swiper-button-prev::after {
  font-size: 1rem !important;
  font-weight: 900;
}
.body-content-slider-top .body-content-slider-image {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.body-content-slider-top .body-content-slider-image img {
  display: block;
  width: 450px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.body-content-slider-top .body-content-main-slider {
  padding: 15px 0px;
  height: 550px;
  width: 100%;
  color: white;
  position: relative;
}
.body-content-slider-top .body-content-thumb-slider {
  left: 20px;
  bottom: 25px;
  position: absolute;
  height: 15%;
  width: 600px;
  z-index: 10;
  display: flex;
  justify-content: space-between;
}
.body-content-slider-top .body-content-thumb-slider .body-content-slider-image {
  height: 100%;
  opacity: 0.4;
}
.body-content-slider-top .body-content-thumb-slider .swiper-slide-thumb-active {
  opacity: 1;
}
.body-content-slider-top .body-content-slider-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Bu kısımda hakkında kısmı yapılmakta */
.body-content-about-content .body-content-about {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 50px;
  gap: 2rem;
}
.body-content-about-content .body-content-about-top {
  padding: 20px 0px;
}
.body-content-about-content .body-content-about-text {
  font-size: 1.05rem;
  opacity: 75%;
  text-align: justify;
}
.body-content-about-content .body-content-about-image {
  width: 420px;
}
.body-content-about-content .body-content-about-button {
  background-color: transparent;
  border: 1px solid black;
  border-radius: 20px;
  opacity: 75%;
}
.body-content-about-content .body-content-about-button-text {
  font-size: 1rem;
  font-weight: 500;
  opacity: 75%;
  color: black;
}
.body-content-about-content #body-content-about-button-content:hover .body-content-about-button {
  background-color: #ebeff1;
  transition: all 0.5s ease;
  opacity: 100%;
}
.body-content-about-content #body-content-about-button-content:hover .body-content-about-button-text {
  color: black;
  transition: all 0.5s ease;
  opacity: 100%;
}

/* Bu kısımda haberler ve card işlemi yapılmakta */
.body-container-card {
  display: flex;
  flex-direction: column;
}
.body-container-card .body-container-card-content {
  display: flex;
  flex-wrap: wrap;
}
.body-container-card .body-content-card-item {
  border-radius: 15px;
  margin: 0px 15px;
  margin-bottom: 40px;
  box-shadow: 0 5px 25px rgba(1, 1, 1, 0.08);
  max-width: 380px;
  z-index: 1000;
}
.body-container-card .body-content-card-item:hover {
  transition: transform 0.5s ease;
  transform: scale(1.02);
}
.body-container-card .body-content-card-item a {
  text-decoration: none;
  color: inherit;
}
.body-container-card .body-card-image {
  height: 226px;
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.body-container-card .body-card-content {
  padding: 20px;
  margin-top: 5px;
  min-height: 160px;
  max-height: 160px;
}
.body-container-card .body-card-content-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #005aa3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-align: justify;
}
.body-container-card .body-card-content-text {
  line-height: 1.2;
  font-weight: 400;
  font-size: 0.93rem;
  margin-top: 20px;
  opacity: 95%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: justify;
}
.body-container-card .body-card-content-bottom {
  background-color: #f3f7f9;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
}
.body-container-card .body-card-content-bottom-icon {
  font-size: 1rem;
}
.body-container-card .body-card-content-bottom-text {
  margin-left: 5px;
  opacity: 95%;
  font-size: 0.9rem;
}
.body-container-card .body-card-content-bottom-right-icon {
  font-size: 0.9rem;
}

/* Bu kısımda sidebar accordion yapılmakta */
.header-offcanvas-list-accordion .body-sidebar-list-accordion {
  padding-top: 50px;
}
.header-offcanvas-list-accordion .body-container-navbar {
  margin-top: 50px;
}
.header-offcanvas-list-accordion .body-sidebar-list-accordion ul {
  padding-left: 0px;
}
.header-offcanvas-list-accordion .body-sidebar-list-accordion-body {
  padding: 0rem 1.25rem;
  display: flex;
  flex-direction: column;
}
.header-offcanvas-list-accordion .body-sidebar-list-accordion-header {
  margin: 0px 0px;
}
.header-offcanvas-list-accordion .body-sidebar-list-accordion {
  list-style: none;
  border-top: 1px solid #ccc;
  border: none !important;
}
.header-offcanvas-list-accordion .body-sidebar-list-accordion-item {
  border: none !important;
  outline: none;
  list-style: none;
  margin: 0px 0px;
}
.header-offcanvas-list-accordion .body-sidebar-list-accordion-item a {
  display: flex;
  align-items: center;
  color: black;
  text-decoration: none;
  padding: 8px 10px;
  font-size: 16px;
  font-weight: 500;
  opacity: 85%;
}
.header-offcanvas-list-accordion .body-sidebar-list-accordion-item .body-sidebar-list-accordion-link:hover {
  background-color: #f3f7f9;
  border-radius: 4px;
}
.header-offcanvas-list-accordion .body-sidebar-list-accordion-item .body-sidebar-list-accordion-link i {
  margin-right: 8px;
}
.header-offcanvas-list-accordion .body-sidebar-list-accordion-button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10.41px 0px;
  font-size: 16px;
  font-weight: 500;
  opacity: 85%;
}
.header-offcanvas-list-accordion .body-sidebar-list-accordion-button:focus {
  box-shadow: inherit;
}
.header-offcanvas-list-accordion .body-sidebar-list-accordion-button:after {
  order: -1;
  margin-right: 3px;
  margin-left: 9px;
  background-size: 16px 16px;
  width: 16px;
  height: 16px;
}
.header-offcanvas-list-accordion .accordion-button {
  display: block;
  padding: 0px 0px;
}
.header-offcanvas-list-accordion .body-sidebar-list-accordion-button:not(.collapsed) {
  color: inherit;
  box-shadow: inherit;
  outline: none;
  background-color: inherit !important;
  color: #002A54 !important;
}
.header-offcanvas-list-accordion .accordion-active {
  color: #002A54 !important;
  font-size: 17px;
  font-weight: 500;
}
.header-offcanvas-list-accordion .body-sidebar-list-accordion-inner-list {
  list-style-type: none;
  padding-left: 0;
}
.header-offcanvas-list-accordion .body-sidebar-list-accordion-inner-list li a {
  display: flex;
  align-items: center;
}

/* Bu kısımda haberler slider yapılmakta */
.body-content-slider-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f0f3f5;
  height: 625px;
}
.body-content-slider-bottom .swiper-button-next, .body-content-slider-bottom .swiper-button-prev {
  color: black;
  border-radius: 100%;
  padding: 20px;
  background-color: white;
  position: absolute;
  bottom: 0px;
}
.body-content-slider-bottom .swiper-button-next::after, .body-content-slider-bottom .swiper-button-prev::after {
  font-size: 1rem !important;
  font-weight: 900;
}
.body-content-slider-bottom .body-content-slider-card {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.body-content-slider-bottom .body-content-slider-card-item {
  width: 400px;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
  z-index: 1000;
}
.body-content-slider-bottom .body-content-slider-card-item:hover {
  box-shadow: 0 5px 10px rgba(1, 1, 1, 0.1);
}
.body-content-slider-bottom .body-content-slider-card img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 0px;
  height: 250px !important;
}
.body-content-slider-bottom .body-slider-card-content {
  padding: 20px;
  margin-top: 5px;
  min-height: 160px;
  max-height: 160px;
}
.body-content-slider-bottom .body-slider-card-content-title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 1.1rem;
  font-weight: 600;
  color: #252e37;
  padding-bottom: 2px;
}
.body-content-slider-bottom .body-slider-card-content-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.2;
  font-weight: 400;
  font-size: 0.93rem;
  margin-top: 20px;
}
.body-content-slider-bottom .body-slider-card-content-bottom {
  padding: 0.8rem !important;
  display: flex !important;
  justify-content: end !important;
  align-items: center;
  background-color: #f5f9fb;
  z-index: 900;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding-right: 20px !important;
  font-size: 0.9rem;
}
.body-content-slider-bottom .body-slider-card-content-bottom-content {
  margin-left: 10px;
}
.body-content-slider-bottom .body-content-slider-button {
  display: flex;
  align-items: center;
  justify-content: end;
  margin: 30px 10px 0px 10px;
}
.body-content-slider-bottom .slider-button-content {
  background-color: transparent;
  border: 1px solid black;
  border-radius: 20px;
  opacity: 75%;
}
.body-content-slider-bottom .body-content-slider-button-text {
  font-size: 1rem;
  font-weight: 500;
  color: black;
}
.body-content-slider-bottom #body-content-slider-group:hover .slider-button-content {
  background-color: #102856 !important;
  transition: all 0.5s ease;
  opacity: 100%;
}
.body-content-slider-bottom #body-content-slider-group:hover .body-content-slider-button-text {
  color: white !important;
  transition: all 0.5s ease;
}

/* Bu kısımda personel kısmı yapılmakta */
.body-container-personel-content .body-content-card-item-personel {
  display: flex;
  margin-top: 3rem;
  gap: 2.5rem 0rem;
}
.body-container-personel-content .body-content-card-item-personel .card-item-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 5px 10px rgba(1, 1, 1, 0.1);
  height: 240px;
  max-width: 275px;
  padding: 1rem 0;
}
.body-container-personel-content .body-content-card-item-personel .card-item-body:hover {
  box-shadow: 0 5px 20px rgba(1, 1, 1, 0.1);
}
.body-container-personel-content .card-body-image {
  width: 100px;
  height: 100px;
  transition: box-shadow 0.3s ease-in-out;
  margin-top: 10px;
  border-radius: 100%;
}
.body-container-personel-content .card-body-text-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 0 0 10px 10px;
}
.body-container-personel-content .card-body-text-content .card-body-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #343a40;
}
.body-container-personel-content .card-body-text-content .card-body-text {
  font-size: 1rem;
  color: #6c757d;
}
.body-container-personel-content .card-body-text-content p {
  margin-bottom: 0.5rem;
}
.body-container-personel-content .row-cols-md-3 .col {
  padding: 15px;
}
.body-container-personel-content .card-item-body-detay {
  max-width: 20rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  border: none;
  box-shadow: 0 5px 10px rgba(1, 1, 1, 0.1);
  min-height: 260px;
}
.body-container-personel-content .card-item-body-detay:hover {
  box-shadow: 0 5px 20px rgba(1, 1, 1, 0.1);
}
.body-container-personel-content .card-item-body .card-body {
  padding: 15px 10px 10px 10px;
}

/* Bu kısımda sss içeriği yapıldı */
.body-container-sss-content .body-container-accordion {
  margin-bottom: 35px;
}
.body-container-sss-content .body-content-accordion-item-sss {
  margin-bottom: 1rem;
  box-shadow: 0px 0px 49px 0px rgba(0, 0, 0, 0.05);
}
.body-container-sss-content .body-content-accordion-button-sss:not(.collapsed) {
  color: white;
  background-color: rgb(39, 60, 102) !important;
}
.body-container-sss-content .body-content-accordion-button-sss {
  display: flex !important;
  gap: 20px !important;
  align-items: center;
  padding: 16px !important;
  background-color: #fdfdfd !important;
}
.body-container-sss-content .body-content-accordion-button-sss-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  line-height: 1.35rem;
  text-align: justify;
  font-size: 1rem;
  font-weight: 600;
  opacity: 85%;
}
.body-container-sss-content .accordion-body-sss-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  opacity: 95%;
  text-align: justify;
}
.body-container-sss-content .body-content-accordion-button-sss:focus {
  box-shadow: none;
}
.body-container-sss-content .body-content-accordion-button-sss:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
}
.body-container-sss-content .accordion-body-link {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 5px;
}
.body-container-sss-content .accordion-body-link-content {
  text-decoration: none;
  color: inherit;
}
.body-container-sss-content .accordion-body-link-text {
  font-size: 1rem;
  font-weight: 500;
  opacity: 85%;
}

/* Bu kısımda duyurular yapılmakta */
.body-content-card-duyuru {
  border-radius: 10px;
  margin: 20px;
  margin-bottom: 10px;
  box-shadow: 0 5px 25px rgba(1, 1, 1, 0.1);
  max-width: 100%;
  height: 100%;
}
.body-content-card-duyuru:hover {
  transition: transform 0.5s ease;
}
.body-content-card-duyuru a {
  text-decoration: none;
  color: inherit;
}

.card-body-duyurular {
  padding: 10px 15px;
  margin-top: 5px;
  min-height: 10px;
  max-height: 150px;
}
.card-body-duyurular h5, .card-body-duyurular p {
  text-align: justify !important;
}

.card-body-title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 1.1rem;
  font-weight: 600;
  color: #005aa3;
  line-height: 1.2;
  text-align: center;
  line-height: 1.5;
}

.card-body-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  opacity: 95%;
  text-align: center;
}

.card-body-bottom {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  z-index: 900;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.card-body-bottom-icon {
  margin-right: 10px;
}

.card-body-bottom-date {
  margin-left: 5px;
  opacity: 95%;
  font-size: 0.9rem;
}

/* Bu kısımda sidebar accordion yapılmakta */
.body-sidebar-list-accordion .body-container-navbar,
.header-offcanvas-list-accordion .body-container-navbar {
  margin-top: 50px;
}
.body-sidebar-list-accordion .body-sidebar-list-accordion ul,
.header-offcanvas-list-accordion .body-sidebar-list-accordion ul {
  padding-left: 0px;
}
.body-sidebar-list-accordion .body-sidebar-list-accordion-body,
.header-offcanvas-list-accordion .body-sidebar-list-accordion-body {
  padding: 0rem 1.25rem;
  display: flex;
  flex-direction: column;
}
.body-sidebar-list-accordion .body-sidebar-list-accordion-header,
.header-offcanvas-list-accordion .body-sidebar-list-accordion-header {
  margin: 0px 0px;
}
.body-sidebar-list-accordion .body-sidebar-list-accordion,
.header-offcanvas-list-accordion .body-sidebar-list-accordion {
  list-style: none;
  border-top: 1px solid #ccc;
  border: none !important;
}
.body-sidebar-list-accordion .body-sidebar-list-accordion-item,
.header-offcanvas-list-accordion .body-sidebar-list-accordion-item {
  border: none !important;
  outline: none;
  list-style: none;
  margin: 0px 0px;
}
.body-sidebar-list-accordion .body-sidebar-list-accordion-item a,
.header-offcanvas-list-accordion .body-sidebar-list-accordion-item a {
  display: flex;
  align-items: center;
  color: black;
  text-decoration: none;
  padding: 8px 10px;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 85%;
}
.body-sidebar-list-accordion .body-sidebar-list-accordion-item .body-sidebar-list-accordion-link:hover,
.header-offcanvas-list-accordion .body-sidebar-list-accordion-item .body-sidebar-list-accordion-link:hover {
  background-color: #f3f7f9;
  border-radius: 4px;
}
.body-sidebar-list-accordion .body-sidebar-list-accordion-item .body-sidebar-list-accordion-link i,
.header-offcanvas-list-accordion .body-sidebar-list-accordion-item .body-sidebar-list-accordion-link i {
  margin-right: 8px;
}
.body-sidebar-list-accordion .body-sidebar-list-accordion-button,
.header-offcanvas-list-accordion .body-sidebar-list-accordion-button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10.41px 0px;
  font-size: 16px;
  font-weight: 500;
  opacity: 85%;
}
.body-sidebar-list-accordion .body-sidebar-list-accordion-button:focus,
.header-offcanvas-list-accordion .body-sidebar-list-accordion-button:focus {
  box-shadow: inherit;
}
.body-sidebar-list-accordion .body-sidebar-list-accordion-button:after,
.header-offcanvas-list-accordion .body-sidebar-list-accordion-button:after {
  order: -1;
  margin-right: 3px;
  margin-left: 9px;
  background-size: 16px 16px;
  width: 16px;
  height: 16px;
}
.body-sidebar-list-accordion .accordion-button,
.header-offcanvas-list-accordion .accordion-button {
  display: block;
  padding: 0px 0px;
}
.body-sidebar-list-accordion .body-sidebar-list-accordion-button:not(.collapsed),
.header-offcanvas-list-accordion .body-sidebar-list-accordion-button:not(.collapsed) {
  color: inherit;
  box-shadow: inherit;
  outline: none;
  background-color: inherit !important;
  color: #002A54 !important;
}
.body-sidebar-list-accordion .accordion-active,
.header-offcanvas-list-accordion .accordion-active {
  color: #002A54 !important;
  font-size: 17px;
  font-weight: 500;
}
.body-sidebar-list-accordion .body-sidebar-list-accordion-inner-list,
.header-offcanvas-list-accordion .body-sidebar-list-accordion-inner-list {
  list-style-type: none;
  padding-left: 0;
}
.body-sidebar-list-accordion .body-sidebar-list-accordion-inner-list li a,
.header-offcanvas-list-accordion .body-sidebar-list-accordion-inner-list li a {
  display: flex;
  align-items: center;
}

#content-body-arama-sonuc {
  padding: 3% 15% 0 15%;
  display: flex;
  font-family: sans-serif;
  justify-content: space-between !important;
  min-width: -moz-fit-content;
  min-width: fit-content;
  min-height: 75vh;
}
@media (min-width: 0) and (max-width: 768px) {
  #content-body-arama-sonuc {
    padding: 5% 5% 0 5% !important;
  }
}
@media (min-width: 768px) and (max-width: 1600px) {
  #content-body-arama-sonuc {
    padding: 5% 5% 0 5% !important;
  }
}
#content-body-arama-sonuc h2 {
  color: #112958;
  text-align: justify;
}
@media (min-width: 0) and (max-width: 767.98px) {
  #content-body-arama-sonuc h2 {
    text-align: center;
  }
}
#content-body-arama-sonuc .gradient-hr {
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, #112958, white);
  border: none;
  margin: 20px auto;
}
@media (min-width: 0) and (max-width: 767.98px) {
  #content-body-arama-sonuc .gradient-hr {
    background: linear-gradient(to right, white, #112958, white);
  }
}
#content-body-arama-sonuc h6 {
  color: #005aa3;
  text-align: justify;
  line-height: 1.2;
  font-weight: 700;
  transition: 0.5s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media (min-width: 0) and (max-width: 991.98px) {
  #content-body-arama-sonuc h6 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
#content-body-arama-sonuc .card {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  border: none;
}
#content-body-arama-sonuc .text {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
}
#content-body-arama-sonuc .text p {
  text-align: justify;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media (min-width: 0) and (max-width: 991.98px) {
  #content-body-arama-sonuc .text p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
#content-body-arama-sonuc .text i {
  color: #112958;
  align-items: flex-end;
}
#content-body-arama-sonuc .list-group-item {
  padding: 2%;
  border-bottom: 1px solid rgb(234, 232, 232);
}
#content-body-arama-sonuc .list-group-item:last-child {
  border-bottom: none;
}/*# sourceMappingURL=style.css.map */