.welcome-wrapper {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  padding-bottom: 8px;
}

.welcome {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1440/800;
  overflow: hidden;
}

.welcome-inner {
  position: relative;
  width: calc(100% - 16px);
  height: 100%;
  margin: 8px 8px 0 8px;
  border-radius: 12px;
  overflow: hidden;
}

.images-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.images-wrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dark-rectangle {
  display: none;
}

.welc-img-bg {
  z-index: 0;
}

.welc-gradient {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #5196D7 0%, #FFF 90%);
}

.welc-img-collage {
  z-index: 2;
}

.welc-content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  text-align: center;
  color: white;
}

.welc-suptitle {
  font-size: 24px;
  font-family: Semi;
  line-height: 1.3;
  margin-bottom: 16px;
}

.welc-h1 {
  font-size: 140px;
  line-height: 1.3;
  font-family: Semi;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff 70%, rgba(255, 255, 255, 0.6) 90%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 0.9;
}
.welc-h1.lower {
  text-transform: none;
}

.h1-big {
  width: 62vw;
}

.search-form {
  position: absolute;
  display: flex;
  gap: 4px;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  padding: 8px;
  border-radius: 10px;
  z-index: 3;
}

.search-input {
  border: 1px solid #E9E9EA;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 16px;
  font-family: Medium;
  color: #212530;
  width: 450px;
}

.search-input::placeholder {
  font-family: Medium;
  color: #909297;
  opacity: 1;
  transition: ease 0.3s;
}

.search-input:focus {
  border: 1px solid #BCBEC1;
}
.search-input:focus::placeholder {
  opacity: 0;
}

.search-list {
  display: none;
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translate(-50%, 100%);
  z-index: 1;
  max-width: 518px;
  width: 100%;
  max-height: 200px;
  overflow-y: scroll;
  padding: 8px;
  background: white;
  border-radius: 6px;
  border: 1px solid #E9E9EA;
  box-shadow: 0px 20px 25px -5px #64666E;
}
.search-list::-webkit-scrollbar {
  width: 6px;
}
.search-list::-webkit-scrollbar-thumb {
  background: #E9E9EA;
  border-radius: 5px;
  border: 1px solid #D3D3D6;
}
.search-list::-webkit-scrollbar-button {
  display: none;
}

.search-item {
  width: 100%;
  padding: 4px 8px;
  background: white;
  border-radius: 6px;
  display: flex;
  gap: 8px;
  transition: 0.3s;
}
.search-item svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 5px;
  fill: #64666E;
  transition: 0.3s;
}
.search-item:hover {
  background: #E8F2FD;
}
.search-item:hover .src-item-link {
  color: #1582E7;
}
.search-item:hover svg {
  fill: #1582E7;
}
.search-item:not(:last-child) {
  margin-bottom: 4px;
}

.src-item-link {
  all: unset;
  color: #64666E;
  cursor: pointer;
  transition: 0.3s;
}

.miss-container {
  color: #64666E;
}

.search-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: #1582E7;
  transition: ease 0.3s;
}
.search-button svg {
  width: 21px;
  height: 21px;
  fill: white;
}
.search-button:hover {
  cursor: pointer;
  background-color: #1375D0;
}

.st-animation-welcome .images-wrap {
  width: 20vw;
  height: 0;
}
.st-animation-welcome .welc-content {
  opacity: 0;
}
.st-animation-welcome .search-form {
  opacity: 0;
}
.st-animation-welcome .dark-rectangle {
  display: block;
  position: absolute;
  bottom: 0%;
  left: 0;
  transform: translate(0%, 100%);
  width: 100vw;
  height: 100%;
  background: #212530;
}

@media (max-width: 768px) {
  .welcome {
    aspect-ratio: 1;
    padding: 0;
  }
  .welcome-inner {
    width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 0;
  }
  .st-animation-welcome .images-wrap {
    width: 60vw;
  }
  .search-form {
    padding: 4px;
    margin: 0 auto;
    width: calc(100% - 32px);
    bottom: 16px;
    border-radius: 6px;
  }
  .search-input {
    width: 100%;
    padding: 6px 10px;
    font-size: 15px;
    border: 0;
    font-size: 14px;
  }
  .search-input::placeholder {
    font-size: 14px;
  }
  .search-input:focus {
    border: 0;
  }
  .search-button {
    width: 32px;
    height: 32px;
    background-color: #1375D0;
    border-radius: 4px;
  }
  .search-button svg {
    width: 16px;
    height: 16px;
  }
  .search-list {
    bottom: 20px;
    max-width: 100%;
    width: calc(100% - 32px);
  }
  .welc-content {
    width: 100%;
  }
  .welc-suptitle {
    font-size: 14px;
    font-family: Medium;
    line-height: 1.4;
    margin-bottom: 6px;
  }
  .welc-h1 {
    width: 100%;
    background: linear-gradient(180deg, #fff 80%, rgba(255, 255, 255, 0.6) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}