/*************** Header ***************/
header {
  background-color: #fff;
  text-align: center;
  position: relative;
  height: 118px;
  transition: height 0.3s ease-in-out;
  z-index: 1050; /* Yüksek z-index */
}
.logo {
  position: absolute;
  top: 28px;
  left: 37px;
  width: 268px;
  height: 70px;
  opacity: 1;
}
.header-search {
  display: flex;
  align-items: center;
  padding-left: 27px;
  color: #fff;
  position: absolute;
  top: 23px;
  left: 611px;
  width: 200px;
  height: 80px;
  background: #f36a11 0% 0% no-repeat padding-box;
  border-radius: 39px;
  border: 0;
  font-size: 30px;
  cursor: pointer;
  outline: 0 !important;
}
.search-icon {
  width: 31px;
  height: 31px;
  margin-right: 27px;
}
.header-global {
  display: flex;
  align-items: center;
  padding-left: 27px;
  color: #fff;
  position: absolute;
  top: 23px;
  left: 848px;
  width: 200px;
  height: 80px;
  background: #f36a11 0% 0% no-repeat padding-box;
  border-radius: 39px;
  border: 0;
  font-size: 30px;
  outline: 0 !important;
}
.global-icon {
  width: 31px;
  height: 31px;
  margin-right: 27px;
}

/*************** Search Input ***************/
@keyframes slideDown {
  0% {
    transform: translateY(-30%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.search-container {
  display: none;
  width: 100%;
  padding: 20px;
  background-color: white;
  position: absolute;
  top: 118px;
  left: 0;
  margin-top: 20px;
  z-index: 1051;
}

.search-container.active {
  display: block;
  animation: slideDown 0.2s ease forwards;
}

.search-input {
  width: 1012px;
  height: 108px;
  padding: 15px;
  padding-left: 101px;
  font-size: 34px;
  border: 3px solid #f36a11;
  border-radius: 54px;
  opacity: 1;
  color: #818181;
  background-image: url(../assets/search2.png);
  background-size: 24px;
  background-position: 44px center;
  background-repeat: no-repeat;
}

.search-input:focus-visible {
  outline: 0;
}

.close-search {
  position: absolute;
  top: 695px;
  left: 486px;
  background-color: #f36a11;
  color: white;
  border: none;
  padding: 10px 20px;
  margin-top: 10px;
  border-radius: 25px;
  cursor: pointer;
  width: 114px;
  height: 114px;
  border-radius: 50%;
}
.close-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 7px;
}

/*************** Header End ***************/

/*************** Main ***************/

main {
  position: relative;
  z-index: 1;
}
.category-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #00a1ed 0% 0% no-repeat padding-box;
  border-radius: 40px 40px 40px 40px;
  opacity: 1;
  gap: 20px;
  padding: 20px;
  z-index: 2;
}
.item {
  position: relative;
  width: 511px;
  height: 511px;
  border-radius: 22px;
  opacity: 1;
  z-index: 3;
}
.background-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
}
.background-image {
  width: 100%;
  height: 100%;
  padding: 12px;
  object-fit: cover;
  opacity: 0.75;
  /*filter: blur(3px);*/
  border-radius: 22px;
}
.background-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(3px);
  z-index: 0;
  border-radius: 22px;
  background: #ffffff;
  opacity: 0.5;
}
.content {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.background-icon {
  z-index: 1;
  margin-bottom: 65px;
  width: 212px;
}
.title {
  width: 441px;
  height: 87px;
  font-size: 35px;
  font-weight: 700;
  color: #00a1ed;
  background-color: #fff;
  border: 1px solid #00a1ed;
  border-radius: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/*************** Main End ***************/
