@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
  --primary_color: #8BC1CD;
  --secondary_color: #182135;
  --text_dark_color: #202020;
  --text_light_color: #fff;
  --hover: #b8b8b8;
  --description_p_color: #4a4a4a;
  --white: #fafafa;
}

input:focus,
textarea:focus,
select:focus {
  outline: none!important;
  box-shadow: none!important;
  border: 1px solid var(--primary_color)!important;
}

.rounded-12px {
  border-radius: 12px;
}

.rounded-25px {
  border-radius: 25px;
}

.text-12px {
  font-size: 12px;
}

.text-14px {
  font-size: 14px;
}

.text-16px {
  font-size: 16px;
}

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

.text-20px {
  font-size: 20px;
}

.text-22px {
  font-size: 22px;
}

.text-24px {
  font-size: 24px;
}

body {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-size: 14px;
  background: #FAFAFA;
  color: var(--text_dark_color);
}

.btn-custom {
  background: var(--primary_color);
  color: #fff;
  border-radius: 12px;
}

.btn-custom-2 {
  background: var(--secondary_color);
  color: var(--white);
  border-radius: 12px;
}


.btn-custom:hover {
  background: var(--secondary_color) !important;
  color: #fff !important;
}

.btn-custom-2:hover {
  background: var(--primary_color) !important;
  color: #fff !important;
}

.btn-custom:active {
  background: var(--secondary_color) !important;
  color: #fff !important;
}

.btn-custom-2:active {
  background: var(--primary_color) !important;
  color: #fff !important;
}

.btn-custom:focus-visible {
  background: var(--secondary_color);
  color: #fff;
}

.btn-custom-2:focus-visible {
  background: var(--primary_color);
  color: #fff;
}

.btn-opacity {
  background: rgba(0, 0, 0, .2);
  color: var(--white);
  border-radius: 12px;
}

.bg-custom {
  background: var(--primary_color);
}

.bg-custom-2 {
  background: var(--secondary_color);
}

.text-custom {
  color: var(--primary_color)!important;
}

.text-custom-2 {
  color: var(--secondary_color)!important;
}


a {
  text-decoration: none;
  transition: all 0.1s linear;
  font-family: "Inter", sans-serif;
}

a:hover {
  text-decoration: none;
  color: var(--hover);
}

.clear {
  clear: both;
}

.bodyBackground {
  background: url(../images/bodyBg.jpg) center center;
  background-size: 100vw auto; /* Görseli ekran genişliğine ve yüksekliğine uyarla */
  background-repeat: no-repeat; /* Tekrar etme */
  background-attachment: fixed; /* Arka plan sabitlenir */
  background-position: center; /* Görseli ortala */
  position: relative;
}

.bodyBackground .overlay {
  width: 100vw;
  height: 100vh;
  position: fixed;
  background: rgba(0, 0, 0, .5);
  z-index: -1;
}

#firstPage h1 {
  color: #fff;
  font-size: 4rem;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 1);
}

#firstPage h1 span {
  display: block;
}

#firstPage p {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 300;
  color: #fff;
  margin: 0px 0px 25px 0px;
  padding: 0px;
}


#subPage {
  width: 100%;
  padding: 30px 0px 30px 0px;
}

header .logo {
  width: 80px;
  height: 80px;
}



#subPage h1 {
  font-size: 28px;
  font-weight: bold;
  margin: 10px;
  text-wrap: nowrap;
  text-align: center;
  color: var(--primary_color)
}

.breadcrumb {
  text-align: center;
  align-items: center;
  justify-content: center;
}

.breadcrumb .breadcrumb-item {
  font-size: 12px;
  color: var(--primary_color);
}

.breadcrumb .breadcrumb-item a {
  color: var(--primary_color);
}

.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: var(--primary_color);
  content: var(--bs-breadcrumb-divider, "/");
}


.breadcrumb .breadcrumb-item.active {
  font-size: 12px;
  color: var(--primary_color);
}

.bodyBackground #subPage h1 {
  font-size: 32px;
  font-weight: bold;
  margin: 10px;
  text-wrap: nowrap;
  text-align: center;
  color: var(--white)
}

.bodyBackground .breadcrumb {
  text-align: center;
  align-items: center;
  justify-content: center;
}

.bodyBackground .breadcrumb .breadcrumb-item {
  font-size: 12px;
  color: var(--white);
}

.bodyBackground .breadcrumb .breadcrumb-item a {
  color: var(--white);
}

.bodyBackground .breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: var(--white);
  content: var(--bs-breadcrumb-divider, "/");
}


.bodyBackground .breadcrumb .breadcrumb-item.active {
  font-size: 12px;
  color: var(--white);
}