/* * {
    border: 1px solid red;
} */

body {
  font-family: "Montserrat", sans-serif;
}

.bg-yas {
  background-color: #009cc6;
}

.loaderWrapper {
  content: "";
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 999;
}

.loader {
  border: 16px solid #f3f3f3;
  /* Light grey */
  border-top: 16px solid #3498db;
  /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* navigation */
nav {
  position: relative;
}

#navOpener:hover {
  cursor: pointer;
}

.sideBarHeader i {
  cursor: pointer;
}

.sideBar {
  position: fixed;
  right: -500px;
  top: 0;
  height: 100vh;
  width: 300px;
  background-color: white;
  transition: right ease 1s;
  overflow: scroll;
  z-index: 9999;
}

@media (min-width: 1200px) {
  .sideBar {
    width: 400px;
  }
}

.sideBarHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sideBarContent {
  margin-top: 30px;
}

nav ul {
  display: flex;
  flex-direction: column;
  color: #4e728c;
  padding: 0;
}

nav ul li {
  list-style: none;
  padding: 5px;
}

@media (min-width: 1200px) {
  nav ul li {
    list-style: none;
    padding: 20px;
  }
}

nav ul li.sideBarTitle {
  font-weight: 700;
}

nav ul li a {
  color: #4e728c;
  text-decoration: none;
  font-weight: 500;
}

/* indexPage */

.banner1 {
  width: 100%;
  min-height: calc(100vh - 165px);
  background-image: url("../image/mainslider.jpeg");
  background-position: center;
  background-size: cover;
}

.banner1 .container {
  height: 100%;
  min-height: calc(100vh - 165px);
}

.banner2 {
  width: 100%;
  background-image: url("../image/bg2.jpeg");
  background-position: center;
  background-size: cover;
}

.banner2 h1 {
  font-size: 40px;
  font-weight: 700;
}

@media (min-width: 1200px) {
  .banner2 h1 {
    font-size: 70px;
  }
}

.banner2 p {
  font-size: 30px;
  font-weight: 500;
}

.banner2 a {
  font-size: 14px;
  font-weight: 600;
  color: #fefefe;
  text-decoration: none;
  line-height: 2.5;
}

@media (min-width: 1200px) {
  .banner2 a {
    font-size: 20px;
  }
}

/* footer */

@media (min-width: 1200px) {
  footer .container-fluid {
    padding: 20px 200px;
  }
}

footer {
  background-color: #ecf0f4;
}

footer ul li {
  list-style: none;
  padding: 10px 0;
}

footer ul li a {
  color: black;
  text-decoration: none;
}

footer ul li.title {
  color: #019cc5;
  font-weight: 600;
  font-size: 18px;
}

.footerSocial i {
  font-size: 2rem;
  color: #064891;
}

.footerCookieAlart {
  background-color: #232323;
  color: white;
  text-align: center;
}

.footerCookieAlart a {
  text-decoration: none;
}

/* faq */

.faq {
  background-color: #3b8aa8;
}

.accordion-item {
  background-color: white;
  padding: 20px;
  border-radius: 15px;
}

@media (min-width: 1200px) {
  .accordion-item {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
  }
}

.accordion-item {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.accordion-item .accordion-button {
  background-color: #3b8aa8;
  border-radius: 15px;
  padding: 20px;
  color: white;
  font-size: 1rem;
  font-weight: 500;
}

@media (min-width: 1200px) {
  .accordion-item .accordion-button {
    font-size: 2rem;
    padding: 40px;
  }
}

.accordion-item:first-of-type {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.accordion-item:first-of-type .accordion-button {
  background-color: #3b8aa8;
  border-radius: 15px;
  padding: 20px;
  color: white;
  font-size: 1rem;
  font-weight: 500;
}

@media (min-width: 1200px) {
  .accordion-item:first-of-type .accordion-button {
    font-size: 2rem;
    padding: 40px;
  }
}

.accordion-item:last-of-type {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.accordion-item:last-of-type .accordion-button {
  background-color: #3b8aa8;
  border-radius: 15px;
  padding: 20px;
  color: white;
  font-size: 1rem;
  font-weight: 500;
}

@media (min-width: 1200px) {
  .accordion-item:last-of-type .accordion-button {
    font-size: 2rem;
    padding: 40px;
  }
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.accordion-button::after {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  margin-left: auto;
  content: "";
  background-image: url("icon/arrow.svg");
  background-repeat: no-repeat;
  background-size: 30px;
  transition: var(--bs-accordion-btn-icon-transition);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("icon/arrow.svg");
  transform: var(--bs-accordion-btn-icon-transform);
}

.accordion-body {
  padding: 20px;
  font-size: 1rem;
  font-weight: 500;
  color: #4a4a4a;
}

@media (min-width: 1200px) {
  .accordion-body {
    font-size: 2rem;
    padding: 40px;
  }
}

/* page:vakifbursuhakkinda.php */

.vbabout {
  position: relative;
  width: 100%;
  min-height: 800px;

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

.vbabout video {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}

.vbabout .content {
  background: hsla(0, 0%, 100%, 0.25);
  backdrop-filter: blur(5.5px);
  -webkit-backdrop-filter: blur(5.5px);
  border-radius: 10px;
  border: 1px solid hsla(0, 0%, 100%, 0.18);
  box-shadow: 0 10px 19px 3px rgba(0, 0, 0, 0.75);
  padding: 10px 20px;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 50rem;
}

.vbabout .content2 {
  max-width: 80rem;
}

.vbabout .content h1 {
  font-size: 34px;
  color: #fefefe;
  font-weight: 600;
  line-height: 45px;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 20px;
}

.vbabout .content p {
  font-size: 15px;
  color: #fefefe;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 28px;
  margin-bottom: 20px;
}

.vbabout .content table tr {
  display: flex;
  align-items: center;
}

.vbabout .content table td {
  font-size: 15px;
  color: #fefefe;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 28px;
  margin-bottom: 20px;
}

.vbabout .content .itemDot {
  min-width: 30px;
  min-height: 30px;
  border-radius: 50%;
  background-color: #9de3f9;
  display: inline-block;
  font-size: 16px;
  text-align: center;
  color: black;
  margin-right: 20px;
}

/* page:basvuruformu */

/* #myTabContent .col-lg-4 {
    padding-right: 0;
    padding-left: 0;
}

#myTabContent .col-lg-8 {
    padding-right: 0;
    padding-left: 0;
} */

.appForm .step {
  margin-bottom: 20px;
}

.appForm .division {
  display: none;
  margin-top: 10px;
  border: 1px solid #ccc;
  padding: 10px;
  background-color: white;
  border-radius: 0.375rem;
}

.appForm .alertMsg {
  display: none;
}

.appForm a:not(.btn) {
  color: #009cc6;
}

.error-message {
  color: red;
  font-size: 12px;
  margin-top: 5px;
  font-weight: bold;
}

.warning-message {
  color: rgb(189, 124, 2);
  font-size: 12px;
  margin-top: 5px;
}

#myTabContent .form-group {
  margin: 0 !important;
}

#myTabContent .row .col-lg-6,
#myTabContent .row .col-lg-4,
#myTabContent .row .col-lg-8 {
  padding: 0 !important;
}

/* #myTabContent .row .col-lg-4 {
    display: flex;
    align-items: center;
} */

.form-group {
  padding: 10px 0px;
  border-top: 1px solid lightgray;
  border-bottom: 1px solid lightgray;
}

/* .form-group-first {
    border-top: 1px solid lightgray;
} */

.phoneContainer {
  position: relative;
}

.prefix {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #333;
}

.fixed-prefix-input {
  padding-left: 50px;
}

.earningDivision {
  display: none;
  border: 1px solid darkblue;
}

.earningDivision legend {
  color: darkblue;
}

.realEstateDivision {
  display: none;
  border: 1px solid darkblue;
}

.realEstateDivision legend {
  color: darkblue;
}

.siblingFieldsets legend {
  color: darkblue;
}

.siblingFieldsets {
  display: none;
  border: 1px solid darkblue;
}

.vehiclesFieldsets {
  display: none;
}

@media print {
  #step2 {
    display: none;
  }

  #step3 {
    display: none;
  }

  #success {
    display: none;
  }
}

a .disabled {
  color: gray;
  cursor: not-allowed;
  pointer-events: none;
  /* This prevents the link from being clicked */
}

/* input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
} */
