.main-1 .content {
  display: flex;
}
.main-1 .txt {
  flex-shrink: 0;
  width: 34.4rem;
  background-color: #f6f3f4;
}
.main-1 .txt h6 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.main-1 .txt .des {
  font-size: 1.2rem;
  font-family: Light;
  line-height: 1.2;
  text-align: center;
}
.main-2 .content {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 1.4rem * 3) / 4);
  overflow-x: auto;
  gap: 1.4rem;
}
.main-2 .content::-webkit-scrollbar {
  display: none;
  /* Chrome / Safari */
}
.main-2 .item {
  position: relative;
  overflow: hidden;
  box-shadow: 0px 10px 20px 0px rgba(199, 199, 199, 0.4);
}
.main-2 .item:hover .img img {
  transform: scale(1.04);
}
.main-2 .item:hover .txt::after {
  opacity: 1;
}
.main-2 .item:hover .txt p {
  color: #fff;
}
.main-2 .item:hover .txt path {
  fill: #fff !important;
}
.main-2 .txt {
  position: absolute;
  bottom: 0.6rem;
  left: 50%;
  width: calc(100% - 1.2rem);
  min-height: 2.4rem;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  background-color: #fff;
  z-index: 1;
}
.main-2 .txt::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, #2a1470 0%, #e8378e 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: -1;
}
.main-2 .txt p {
  font-family: Light;
}
.main-2 .control {
  position: relative;
  height: 3px;
  margin-top: 9rem;
  background-color: #e8e8e8;
}
.main-2 .control .box {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  height: 3.3rem;
  padding: 0 2.3rem;
  border-radius: 5rem;
  border: 3px solid #e8e8e8;
  transform: translateY(-50%);
  background-color: #fff;
  cursor: pointer;
  transition: none;
}
.main-3 .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.main-3 .item {
  display: flex;
  gap: 1.6rem;
  padding: 3rem 2.5rem;
  background-color: #f7f7f7;
  position: relative;
}
.main-3 .item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  opacity: 0;
  height: 3px;
  transition: all ease 0.3s;
  background: linear-gradient(270deg, #2a1470 0%, #e8378e 100%);
  z-index: 1;
  transform: translateX(-50%);
}
.main-3 .item:hover::after {
  opacity: 1;
  width: 100%;
}
.main-3 .item > .i {
  width: 2.4rem;
  height: 2.4rem;
}
.main-3 .item .txt h6 {
  font-size: 1.5rem;
}
.main-3 .item .txt p {
  display: flex;
  margin-top: 0.9rem;
}
.main-3 .item .txt p span {
  font-size: 0.8rem;
  padding: 0 0.5rem;
}
.main-3 .item .txt p span:not(:last-of-type) {
  border-right: 1px solid #cdcdcd;
}
.main-3 .item .txt p span:first-of-type {
  padding-left: 0;
}
.main-3 .item .txt .more-btn {
  margin-top: 1.75rem;
}
.main-4 .content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.main-4 .item {
  gap: 1.4rem;
  padding: 3rem 0;
  background-color: #F7F7F7;
}
.main-4 .item .i {
  width: 3.1rem;
  height: 3.1rem;
}
.main-4 .item:hover {
  background-color: #F6F3F4;
}
