.business-select {
    color: #979797;
	font-weight: 400;
}

/* 실제 값 선택 후 */
.business-select:valid {
    color: #1A1D24;
}


.hover_text {
	top: 0%;
	left: 50%;
	transform: translate(-50%, 100%);
}

.motion_btn span{
	position: absolute;
	width: 100%;
	height: 100%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .4s;
}

.motion_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 13.3rem;
    border-radius: 5rem;
    font-size: 1.3rem;
    font-weight: 800;
    position: relative;
    overflow: hidden;
    height: 3.6rem;
}


.container1 {
  grid-template-areas:
    'b a'
    'b c';
	
}


.title1 {
  grid-area: a;
  align-self: end;
}

.subtext1 {
  grid-area: c;
  align-self: start;
}

.thumb1 {
  grid-area: b;
}

@media (max-width: 768px) {

  .container1 {
    grid-template-areas:
      'a'
      'b'
      'c';
  }
  .title1 {
    grid-area: a;
    align-self: end;
  }

  .subtext1 {
    grid-area: c;
    align-self: start;
  }

  .thumb1 {
    grid-area: b;
    justify-content: start;
  }
}

