.contact_container {
  padding: 0px 60px 90px;
  margin: 0 auto;
}

Form {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #e9e9e9;
  padding: 50px 30px;
  width: 100%;
  height: auto;
  background-color: #f6f5f6;
  border-radius: 15px;
  margin: 50px 0 0;
}

input[type="text"],
input[type="email"],
.select_box {
  padding: 0.375rem 0.75rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  width: 330px;
  height: 38px;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: 0.4rem;
  margin: 16px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.contact_titles {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact_titles h1 {
  font-size: 2rem;
  color: #212529;
}
.contact_titles p {
  font-size: 1.6rem;
  color: #212529;
  padding: 0 0 24px;
}

.contact_btn button {
  font-size: 1.6rem;
  color: #ffffff;
  background-color: #008eff;
  padding: 10px 40px;
  text-transform: uppercase;
  width: 210px;
  margin-top: 1.6rem;
  border: none;
  border-radius: 8px;
}
.contact_btn button:hover {
  background-color: #ffffff;
  color: #008eff;
  transition: 0.4s ease-in-out;
}

.thankyou_popup_main {
  width: 300px;
  height: 200px;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #f4f3f3;
  border-radius: 8px;
  border: 1px solid rgb(188, 187, 187);
  z-index:99999;
}

.thankyou_popup {
position: absolute;  
width:100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

.popup_title {
  font-size: 2rem;
  color: #008eff;
  text-align: center;
  margin-top: 2rem;
  border-bottom: 1px solid rgb(188, 187, 187); 
  padding-bottom: 10px;
}

.popup_text {
  font-size: 1.6rem;
  font-weight: bold;
  color: #212529;
  margin-top: 3rem;
  text-align: center;
}

.popup_button {
  background-color: #008eff;
  color: #ffffff;
  font-size:1.6rem;
  font-weight: bolder;
  transition: 0.4s ease-in-out;
  border: none;
  border-radius: 8px;
  padding: 8px 0;
  width: 30%;
 margin-top:2rem;

}

@media only screen and (min-width: 320px) and (max-width: 359px){
  .contact_container {
    padding: 0px 10px 10px;
    margin-bottom: 2rem;
}
}

@media only screen and (min-width: 360px) and (max-width: 480px){
  .contact_container {
    padding: 0px 20px 20px;
    margin-bottom: 2rem;
}
}

@media screen and (max-width: 820px) {
  .contact_titles {
    display: block;
    text-align: center;
  }

  .contact_titles h1 {
    margin-bottom: 2rem;
  }

  .contact_btn button {
    width: 170px;
  }

  input[type="text"],
  input[type="email"] {
    width: 100%;
    margin: 10px auto;
  }

  .row {
    display: block;
  }

  Form {
    display: block;
    text-align: center;
    margin: 0;
  }
}
