/* INFOBANT (Bilgilendirme Bantı) START*/

#infoBantMainContainer {
  background: #f1f2f3ea;
  width: 100%;
  height: 120px;
  padding: 112px 0;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 0;
  left: 0;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  z-index: 999;
}

#infoBantSubContainer {
  width: 60%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  gap: 1.5em;
}

.pInfoBant {
  font-size: larger;
  line-height: 1.5em;
  color: #696969;
}

.pInfoBant a {
  color: #7fcea9;
  font-size: 1em;
}

.pInfoBant a:hover {
  text-decoration: underline;
  color: #2e9b68;
}

#closeInfoBant {
  background: #198754;
  color: #f5f5f5a4;
  border: none;
  border-radius: 50px;
  font-size: 0.9em;
  padding: 0.3em 1.5em;
}

#closeInfoBant:hover {
  background: #2e9b68;
  color: #fff;
}

@media (max-width: 768px) {
  #infoBantMainContainer {
    font-size: 14px;
    padding: 7em 0;
  }

  #infoBantSubContainer {
    width: 70%;
    text-align: center;
  }

  .pInfoBant {
    font-size: 1em;
  }
}

@media (max-width: 425px) {
  #infoBantMainContainer {
    font-size: 10px;
  }

  #infoBantSubContainer {
    width: 90%;
    text-align: center;
  }

  #closeInfoBant {
    font-size: 0.8em;
  }
}

/* INFOBANT (Bilgilendirme Bantı) END*/

/* Footer Contracts Start*/

.contracts {
  width: 100%;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: lightcoral; */
}

.contracts div {
  height: inherit;
  /* background-color: lightblue; */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
}

.contracts div a {
  transition: all 0.3s linear;
  font-size: small;
  color: #696969;
}

.contracts div a:hover {
  color: #198754;
  transform: scale(1.03);
}

.contracts span {
  display: inline-block;
  align-self: center;
  width: 1px;
  height: 15px;
  margin-bottom: 0.1rem;
  background-color: #696969;
}

@media (max-width: 425px) {
  .contracts {
    margin-top: 0.5rem;
  }
  .contracts div {
    align-self: center;
    align-items: center;
  }

  .contracts span {
    align-self: center;
    margin-top: 0.4rem;
  }
}

@media (max-width: 405px) {
  .contracts {
    margin-top: 0.5rem;
    height: 3rem;
  }
  .contracts div {
    text-align: center;
    align-items: center;
  }

  .contracts div a {
    line-height: 1rem;
  }

  .contracts span {
    align-self: center;
  }
}

/* Footer Contracts End*/
