body {
  background-color: #2BFCC9;
  overflow-x: hidden;
}
h2 {
  font-weight: 200;
  font-size: 100px;
  letter-spacing: 15px;
  text-align: center;
  color: #595959;
  font-family: 'Kanit', sans-serif;
}
p {
  font-weight: 100;
  font-size: 36px;
  line-height: 46px;
  color: #2BFCC9;
  font-family: 'Kanit', sans-serif;
}
.intro-animation-center {
  width: 100vw;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#GraySection {
  width: 100%;
  background-color: #595959;
  padding-bottom: 70px;
}
.intro-txt {
  width: 70%;
  margin: 0 auto 80px;
}
#slantBg {
  width: 100vw;
  height: 200px;
  background: linear-gradient(to top left, #595959 50%, transparent 50.3%),
    linear-gradient(to top right, #595959 50%, transparent 50.3%), #2BFCC9;
}
.info-container {
  margin: 0 auto ;
  padding-top: 40px;
  border-top: 1px solid #2BFCC9;
  display: flex;
  flex-direction: row;
  width: 80vw;
  justify-content: space-between;
}
.info-txt {
  font-weight: 300;
  font-size: 23px;
  line-height: 30px;
}
.company-info {
  display: flex;
  flex-direction: column;
  width: 26.5%;
}
.svg-container {
  height: 250px;
  width: auto;
  align-self: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.svg-container svg {
  height: 150px;
  width: auto;
}
.form-container {
  margin: 0 auto;
  width: 80vw;
}
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
input, textarea {
  width: calc( 800px - 40px );
  height: 80px;
  font-family: 'Kanit', sans-serif;
  font-weight: 200;
  color: #44A48C;
  background-color: transparent;
  border-top: none;
  border-bottom: solid 2px #44A48C;
  border-left: none;
  border-right: none;
  outline: none;
  margin-bottom: 20px;
  font-size: 30px;
  padding: 0 20px;
}
input::placeholder {
  color: color: #44A48C;
}
textarea {
  height: 150px;
  padding: 15px 20px 0 20px;
}
.submit {
  width: auto;
  font-family: 'Kanit', sans-serif;
  margin-bottom: 100px;
  font-weight: 300;
  font-size: 40px;
  padding: 5px 20px;
  letter-spacing: 1px;
  background-color: #595959;
  text-transform: uppercase;
  color: #fff;
  transition: .5s all;
  cursor: pointer;
  border-radius: 5px;
  border: none;
  outline: none;
}
.submit:hover {
  background-color: #44a48c;
  transform: scale(1.05);
}

@media (max-width: 1450px){
  p { font-size: 26px; line-height: 32px; }
}
@media (max-width: 1450px){
  p { font-size: 24px; line-height: 30px; }
}
@media (max-width: 1000px){
  .info-container { flex-direction: column; }
  .company-info { width: 100%; }
}
