* {
  cursor: default;
}

body {
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  line-height: 1.3;
}

.wrapper {
  display: flex;
  flex-direction: column;
  width: 1170px;
  padding: 0 15px;
}
.wrapper h2 {
  font-size: 30px;
  font-weight: 700;
  color: #333333;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
}
.wrapper h2 span {
  color: #45763c;
}
.s1 h2 {
  display: block;
  margin: 0 auto 30px;
  max-width: 660px;
  width: 100%;
}
header, section {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

section .wrapper {
  padding: 50px 15px;
}

.inp {
  display: flex;
  align-items: center;
  position: relative;
  margin-right: 15px;
}
.inp img {
  position: absolute;
  opacity: 0.13;
  z-index: 1;
  left: 20px;
  pointer-events: none;
}

input {
  width: 280px;
  height: 70px;
  border: 1px solid rgba(0, 0, 0, 0.13);
  border-radius: 50px;
  padding-left: 50px;
  font-size: 17px;
  position: relative;
  cursor: text;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 280px;
  height: 70px;
  background: #90bc10;
  font-size: 16px;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  border-bottom: 3px solid #779b0d;
  cursor: pointer;
  position: relative;
  bottom: 0;
  transition: all 200ms;
}
.button:hover {
  background: #8cb60f;
}
.button:active {
  bottom: -3px;
  border-bottom: 0px;
}

