#contactH{
  text-align: center;
}

.contactSec{
  width: 100vw;
  height: 60vh;
}

#contactForm {
  display: flex;
  justify-content: center;
  height: 70%;
  width: 100%;
  font-size: 1.75vmin;
}

.gridContainer{
  display: grid;
  grid-template-columns: auto auto;
  padding: 1vmax;
  justify-content: space-between;
  row-gap: 5%;
  column-gap: 5%;
}

.columnS input{
  width: 15vw;
  font-size: 1.75vmin;
}

#submit {
  align-content: center;
}

textarea {
  width: 300px;
  height: 80px;
}

.block {
  display: none;
  position: relative;
  width: 500px;
  height: 250px;
  margin: auto auto;
  background: #7e7e7e;
}

.block:before, .block:after {
  content: '';
  position: absolute;
  left: -2px;
  top: -2px;
  background: linear-gradient(45deg, green, white);
  background-size: 400%;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  z-index: -1;
  animation: steam 20s linear infinite;
}

@keyframes steam {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.block:after {
  filter: blur(50px);
}

#thankHead{
  display: flex;
  height: 80px;
  background: #144600;
  top: 0;
  text-align: center;
  justify-content: center;
  margin: 0;
}

#thankBody{
  text-align: center;
  padding: 10px;  
}

#aBut {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  /* line-height: 2; */
  color: #144600;
  font-size: 30px;
  font-family: verdana;
  letter-spacing: 4px;

  /* use combination of any two */
  /* 1. */
  /* padding: 5px; */

  /* 2. */
  padding-left: 5px;
  /* padding-right: 5px; */
}

#aBut::before,
#aBut::after,
#ani::before,
#ani::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: transparent;
  transition: 1s;
  /* -webkit-mix-blend-mode: hue; */
}

#aBut::before {
  top: -2px;
  left: -2px;
  border-top: 2px solid #144600;
  border-left: 2px solid #144600;
}
#aBut::after {
  top: -2px;
  right: -2px;
  border-top: 2px solid #144600;
  border-right: 2px solid #144600;
}

#ani::before {
  bottom: -2px;
  left: -2px;
  border-bottom: 2px solid #144600;
  border-left: 2px solid #144600;
}
#ani::after {
  bottom: -2px;
  right: -2px;
  border-bottom: 2px solid #144600;
  border-right: 2px solid #144600;
}


#aBut:hover::before,
#aBut:hover::after,
#aBut:hover #ani::before,
#aBut:hover #ani::after  {
  width: calc( 180px / 2);
  height: calc( 50px / 2);
}