.aeslider-container {
  display: flex;
  overflow: hidden;
  width: 100%;
  max-width: 1320px;
  position: relative;
}

.aeslider-container2 {
  display: flex;
  /* overflow: hidden; 
  width: 100%;
  max-width: 1320px;*/
  position: relative;
}

.aeslider {
  display: flex;
  transition: transform 0.5s ease;
}

.aeslide {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  /* border: 1px solid #ccc; */
}

.aenav-buttons {
  position: absolute;
  bottom: 98px;
  left: 50%;
  transform: translateX(-50%);
  gap: 13px;
}

.aenav-button {
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: 1px solid #b7b7b7;
  width: 18px;
  height: 18px;
}

.aenav-button.aeactive {
  /* background-color: rgba(0, 0, 0, 0.7); */
  border-color: #ffd100;
    background-color: #ffd100;
}

@media (max-width: 1320px) {
  .aeslider {
    width: 400%;
  }

  .aenav-buttons {
    display: flex;
  }

  .aeslide {
    width: 100%;
  }
}

@media (min-width: 1321px) {
  .aeslider {
    width: 100%;
  }

  .aeslide {
    width: 330px;
  }

  .aenav-buttons {
    display: none;
  }
}

.iletisimformu input {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Calibri Light', Arial, 'Lato', sans-serif;
  font-size: 0.85em;
  border: none;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 4px;
}

table tr:hover {
  /* background-color: #ddd; */
  background-color: #0004ff14;
}

.lng:hover {
  color: #d6510c;
}

#cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 10px;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 16px;
  z-index: 1000;
  display: none;
  border-radius: 10px;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.2);
  transition: bottom 0.3s ease-in-out;
}
#cookie-notice p {
  margin: 0;
  font-size: 14px;
  padding-bottom: 6px;
}
#cookie-notice a {
  color: #ff9800;
  text-decoration: none;
}
#cookie-notice a:hover {
  text-decoration: underline;
}
#cookie-notice button {
  border-radius: 20px;
  padding: 10px;
  text-transform: uppercase;
  font-size: 12px;
  text-align: center;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
}
.accept-cookie {
  background-color: #6BBE6B;
  border: 2px solid #6BBE6B;
}
.accept-cookie:hover {
  background-color: #42bd42;
  border: 2px solid #42bd42;
  transform: scale(1.1);
  box-shadow: 0 14px 10px rgba(0, 128, 0, 0.6);
}
.decline-cookie {
  background: #2d2d2d;
  border: 2px solid #555;
}
.decline-cookie:hover {
  background-color: #555;
  border: 2px solid #ff4d4d;
  transform: scale(1.1);
  box-shadow: 0 14px 10px rgba(255, 0, 0, 0.6);
}

input:focus {
  box-shadow: 0px 0px 24px rgba(0, 255, 13, 0.5);
}
textarea:focus {
  box-shadow: 0px 0px 24px rgba(0, 255, 13, 0.5);
}
select:focus {
  box-shadow: 0px 0px 24px rgba(0, 255, 13, 0.5);
}

.wmodal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow-y: auto;
  z-index: 1000;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.wmodal {
  background: #fff;
  padding: 20px;
  margin: 10px;
  border: 1px solid #ccc;
  text-align: center;
  /* width: 300px; */
  /* max-height: 400px; */
  pointer-events: all;
}

.wmodal h3 {
  font-size: 18px;
}

.wmodal p {
  font-size: 14px;
}

.wmodal button {
  margin-top: 10px;
  padding: 5px 10px;
  border: none;
  background: #007bff;
  color: white;
  cursor: pointer;
}

.aeflexcontainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.aeflexcol {
  display: flex;
  flex-direction: column;
}
.aeh100 {
  height: 100%;
}

