#style-3_contact_body {
  width: 100dvw;
  position: relative;
  height: 100dvh;
  padding: 4vh 3.5vw;
  background: var(--background-color);
}
#container {
  position: relative;
  height: 100%;
  min-height: 620px;
  width: 100%;
  background: var(--primary-color);
  overflow: hidden;
}
.heading-container {
  position: relative;
  left: -2vw;
  height: 1fr;
}
h1 {
  font-size: 18.5vw;
  font-family: var(--heading-font);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--placeholder);
  line-height: 11vw;
  text-wrap: nowrap;
  line-height: 26vh;
  pointer-events: none;
  text-wrap: nowrap;
  word-break: keep-all;
  white-space: nowrap;
}
.wrapper {
  margin: 3.5% 0 7%;
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 8% 46% 41%;
  grid-gap: 1%;
}
form {
  width: clamp( 400px, 100% , 600px); 
}
form h2 {
  font-size: 4rem;
  font-weight: bolder;
  text-decoration: underline;
  text-align: end;
  color: var(--background-color);
  cursor: pointer;
}
form .firstFormsection , form .secondFormsection  {
  display: grid;
  grid-template-columns: 49% 49%;
  grid-gap: 2%;
}
form label {
  display: none;
}
form div:last-child{
  display: flex;
  justify-content: end;
}
form input {
  width: 100%;
  padding: 20px 40px 3px 15px;
  border: none;
  background: transparent;
  border-bottom: 2px solid var(--background-color);
  font-size: 22px;
  color: var(--background-color);
  font-family: var(--heading-font);
  margin: 15px 0;
}
input:focus {
  outline: none;
}
input::placeholder {
  color: var(--background-color);
  font-family: var(--heading-font);
  font-weight: 500;
}
#theHomeBtn {
  display: none;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 50%;
  width: 35%;
  transform: translate(-50%, -50%);
  margin: 10px 0;
  background: var(--background-color);
  height: 50px;
  transition: 0.3s;
  font-weight: 900;
  position: relative;
  cursor: pointer;
  border: none;
  box-shadow: none;
}
#theSubmitBtn {
  margin: 0px 0;
  background: var(--background-color);
  width: 35%;
  height: 50px;
  transition: 0.3s;
  font-weight: 900;
  position: relative;
  cursor: pointer;
  border: none;
  box-shadow: none;
  border-radius: 11px;
}
#theSubmitBtn h6,
#theHomeBtn h6 {
  color: var(--primary-color);
  font-size: 23px;
  font-family: var(--heading-font);
  z-index: 10;
  position: relative;
  transition: all 0.2s ease-in-out 0.2s;
  transition-delay: 0.2s;
}
#theSubmitBtn:after,
#theHomeBtn:after {
  content: "";
  background-color: whitesmoke;
  position: absolute;
  height: inherit;
  width: 100%;
  left: 0;
  bottom: 0px;
  transition: all 0.6s ease-in-out;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 11px;
}
#theSubmitBtn:active:after,
#theHomeBtn:active:after {
  width: 100%;
  transform: scaleX(1);
}
#theSubmitBtn:hover:after,
#theHomeBtn:hover:after {
  width: 100%;
  transform: scaleX(1);
  border-radius: 11px;
}
#theSubmitBtn:hover,
#theHomeBtn:hover {
  scale: 1;
  border-radius: 11px;
}
#theSubmitBtn:hover > h6,
#theHomeBtn:hover > h6 {
  color: var(--background-color);
}
#theSubmitBtn:active,
#theHomeBtn:active {
  scale: 0.98;
}
.stalker {
  position: relative;
}
.stalker img {
  position: absolute;
  aspect-ratio: 1/1;
  width: 390px;
  left: 20%;
  top: -10%;
  pointer-events: none;
  transform: translateX(-20%);
}
.textbox {
  position: relative;
  aspect-ratio: 1;
  width: 210px;
  left: 60%;
  display: flex;
  align-items: center;
  bottom: -0%;
}
.stalker .textbox h5 {
  font-size: 22px;
  text-align: left;
}
#bear-text_home {
  display: none;
}

#bear-text_home a {
  text-decoration: none;
  color: red;
}

span {
  color: red;
}
.stalker .textbox #chat-bubble {
  aspect-ratio: 1;
  width: 210px;
  transform: scale(-1.6, 1);
  position: absolute;
  bottom: -110%;
}
.socialinformation{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 32px;
}
.socialinformation h5 {
  font-size: 23px;
  color: var(--background-color)
}
.none {
  display: none !important;
}
.centerIt {
  display: flex;
  justify-content: center;
  align-items: center;
}
.stalker{
  display: none;
}
.socials div {
  width: 100%;
}.socials div svg:first-child{
  margin-left: 0;
}
.socials div:last-child{
  margin: 0;
}
.socials div svg {
  scale: 2;
  margin-inline: 10px;
  margin-top: 10px;
  cursor: pointer;
  transition: 0.5s;
}
.socials div svg:hover {
  fill: white;
  color: white;
  scale: 2.07;
}
a {
  height: 25px;
  width: 25px;
  text-decoration: none;
  margin-inline: 5px;
}

@media (min-width: 600px) and (max-width: 1024px) {


  .heading-container {
    left: -2vw;
    top: -7vh;
  }
  h1 {
    font-size: 18.5vw;
  }
  .wrapper {
    grid-template-rows: 4% 47% 45%;
    grid-template-columns: 100%;
    grid-gap: 0%;
    margin: 0;
    padding: 0 16px;
    place-items: center;
    height: 80%;
  }
  form {
    padding: 0 32px;
  }
  form h2 {
    text-align: center;
  }
  .stalker {
    position: absolute;
    right: 20%;
    top: -50%;
  }
  form div:last-child {
    justify-content: center;
  }
  .socialinformation{
    justify-content: center;
    width: 100%;
    display: flex;
    align-items: flex-end;
    margin-top: 50px;
    padding: 0;
  }
  .stalker * {
    scale: 0.7;
  }
  #theHomeBtn {
    top: 300px;
  }
  .stalker img {
    position: absolute;
    aspect-ratio: 1/1;
    width: 290px;
    left: 0%;
    top: 10%;
    pointer-events: none;
    transform: translateX(-20%);
  }
  .textbox {
    position: relative;
    aspect-ratio: 1;
    width: 210px;
    left: 65%;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: -0%;
  }
  .socialinformation {
    display: grid;
    grid-template-columns: 30% 0 30% 0 30%;
    place-items: start;
  }
  .socialinformation div {
    margin-inline: 0vw;
    place-content: center;
    place-items: center;
  }
  .stalker .textbox h5 {
    font-size: 22px;
    text-align: left;
    margin-right: 20px;
  }
  .stalker .textbox #chat-bubble {
    aspect-ratio: 1;
    width: 210px;
    transform: scale(-1.6, 1);
    position: absolute;
    bottom: -120%;
    right: 20%;
  }
  .socials div svg {
    scale: 1.67;
    margin-inline: 7px;
    margin-top: 6px;
  }
}
@media (max-width: 600px) {
  .heading-container {
    left: -2vw;
    top: -11vh;
  }
  h1 {
    font-size: 18.5vw;
    
  }
  .wrapper {
    grid-template-rows: 4% 47% 45%;
    grid-template-columns: 100%;
    grid-gap: 0%;
    margin: 0;
    padding: 0 ;
    place-items: center;
    height: 80%;
  }
  form {
    padding: 0 10vw;
    min-height: 400px;
    height: fit-content;
    margin-top: 5vh;
    padding: 0 10vw;
  }
  form h2 {
    text-align: center;
    font-size: 3rem;
  }
  form input {
    width: 100%;
    padding: 10px 20px 3px 10px;
    border: none;
    background: transparent;
    border-bottom: 2px solid var(--background-color);
    font-size: 16px;
    color: var(--background-color);
    font-family: var(--heading-font);
    margin-top: 10px ;
    text-align: center;
  }
  form .firstFormsection , form .secondFormsection  {
    display: grid;
    grid-template-columns: 100%;
    grid-gap: 2%;
  }
  .stalker {
    position: absolute;
    right: 20%;
    top: -50%;
  }
  #theSubmitBtn{
    width: 50%;
  }
  form div:last-child {
    justify-content: center;
  }
  .socialinformation{
    grid-template-columns: 50% 0  50%;
    grid-template-rows: repeat(2,  50% );
    width: 100%;
    display: grid;
    flex-direction: row;
    padding: 0; 
    padding-top: 100px;
    height: 300px;
  }
  .stalker * {
    scale: 0.7;
  }
  #theHomeBtn {
    top: 300px;
  }
  .stalker img {
    position: absolute;
    aspect-ratio: 1/1;
    width: 290px;
    left: 0%;
    top: 10%;
    pointer-events: none;
    transform: translateX(-20%);
  }
  .textbox {
    position: relative;
    aspect-ratio: 1;
    width: 210px;
    left: 65%;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: -0%;
  }
  .socialinformation {
    place-content: normal;
    place-items: normal;
    padding: 1vw;
    padding-top: 100px;
    display: none;
  }
  .socialinformation h5 {
    font-size: 1rem;
  }
  .socialinformation p {
    font-size: 0.8rem;
  }
  .socialinformation div {
    margin-inline: 0vw;
    place-content: center;
    place-items: center;
  }
  .socials {
    width: 40vw;
    height: 100%;
  }
  .socials div:last-child {
    display: flex;
    margin-bottom: 10px;
    width: 100%;
    height: 100%;
    place-content: normal;
    place-items: normal;
    justify-content: space-around;
  }
  .socials div svg {
    scale: 1.5;
    margin: 0;
    cursor: pointer;
    transition: 0.5s;
}
  .stalker .textbox h5 {
    font-size: 22px;
    text-align: left;
    margin-right: 20px;
  }
  .stalker .textbox #chat-bubble {
    aspect-ratio: 1;
    width: 210px;
    transform: scale(-1.6, 1);
    position: absolute;
    bottom: -120%;
    right: 20%;
  }
}
