main {
  padding-top: 48px;
}
main .research__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 80px;
  align-items: center;
  margin-bottom: 24px;
}
main .research__grid .research__grid-left {
  display: flex;
  justify-content: center;
}
main .research__grid .research__grid-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
main .research__grid .research__grid-right h2 {
  color: rgb(0, 103, 152);
  line-height: 40px;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 0;
  text-transform: uppercase;
}
main .research__grid .research__grid-right p {
  font-size: 16px;
  line-height: 24px;
  color: #000;
  font-weight: 400;
}
main .research__grid .research__grid-right #research_input {
  background-color: #fff;
  height: 48px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #000;
  border: unset;
  outline: unset;
}
main .research__grid .research__grid-right #research_input::-moz-placeholder {
  color: rgb(148, 148, 148);
}
main .research__grid .research__grid-right #research_input::placeholder {
  color: rgb(148, 148, 148);
}
main .research__grid .research__grid-right .research__btn {
  background-color: rgb(0, 103, 152);
  color: #fff;
  font-size: 14px;
  line-height: 19px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 8px;
  width: 160px;
  cursor: pointer;
}

@media all and (max-width: 1000px) {
  main .research__grid {
    grid-gap: 40px;
  }
  main .research__grid .research__grid-right h2 {
    font-size: 30px;
  }
  main .research__grid .research__grid-right .research__btn {
    margin: 0 auto;
  }
}
@media all and (max-width: 500px) {
  main .research__grid {
    grid-template-columns: unset;
  }
  main .research__grid .research__grid-right h2 {
    font-size: 26px;
  }
}/*# sourceMappingURL=search_all.css.map */