/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 02 2023 | 07:06:03 */
/* Main form container */
.form-container {
  width: 50%;
  background-color: rgb(245, 235, 235);
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.contactUs-form {
  width: 100%;
  margin: 0px 20% 0px 20%;
  box-sizing: border-box;
}

.contactUsFormContainer {
  position: relative;
  zoom: 1;
}
/* input, submit and other form components */
.form-control {
  min-width: 60% !important;
  max-width: 60% !important;
  display: inline-block;
  box-sizing: border-box;
  margin-left: 20px !important;
  margin-top: 30px !important;
  background: #fff;
  padding: 0px !important;
  border: 0px !important;
  box-shadow: 0 1px 1px rgb(0 0 0 / 4%);
}

.form-control input,
.form-control select {
  border: 2px solid #c7c5c5;
  border-radius: 10px;
  font-family: Montserrat;
  font-style: normal;
  font-size: 15px;
  padding: 10px;
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.form-control textarea {
  border: 2px solid #c7c5c5;
  border-radius: 10px;
  font-family: Montserrat;
  font-style: normal;
  font-size: 15px;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
}

.form-control label {
  font-family: Montserrat;
  font-style: normal;
  font-size: 15px;
  margin-bottom: 5px;
  display: inline-block;
}

.form-control input:focus {
  outline: 0;
  border-color: rgb(117, 110, 110);
}

.form-control input:hover {
  border-color: rgb(138, 212, 235);
}

.form-control select:focus {
  outline: 0;
  border-color: rgb(117, 110, 110);
}

.form-control select:hover {
  border-color: rgb(138, 212, 235);
}

.contactUs-form button {
  background: linear-gradient(180deg, #ffab00 0%, #ff7200 100%) !important;
  border-radius: 8px !important;
  border: none !important;
  font-family: Montserrat;
  font-style: normal;
  font-size: 18px;
  color: white;
  padding: 10px 50px 10px 50px;
  display: inline-block;
}
.contactUsBtnCnt{
 display:flex;
 justify-content:center;
 min-width: 60% !important;
 max-width: 60% !important;
}
/* success, error styles */
.form-control.success input {
  border-color: #2ecc71;
}

.form-control.error input {
  border-color: #e74c3c;
}

.form-control small {
  color: #e74c3c;
  font-family: Montserrat;
  font-style: normal;
  visibility: hidden;
  display: inline-block;
}

.form-control.error small {
  visibility: visible;
}
.form-response {
  margin-left: 20px;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 600;
  display: none;
}
.form-response.show {
  display: block;
}

/* snack bar styles */
#contactUssnackbar {
  visibility: hidden;
  max-width: 30%;
  min-width: 30%;
  background-color: #FF7200 !important;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 35%;
  top: 130px;
  font-size: 17px;
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
}

/* Loader and its animations */
.contactUsLoader {
  z-index: 1000;
  border: none;
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background-color: #1da1f2;
  opacity: 0.6;
  cursor: wait;
  position: absolute;
  display: none;
}

#contactUssnackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 5s;
  animation: fadein 0.5s, fadeout 0.5s 5s;
}

@-webkit-keyframes fadein {
  from {
    top: 100;
    opacity: 0;
  }
  to {
    top: 130px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    top: 100;
    opacity: 0;
  }
  to {
    top: 130px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    top: 130px;
    opacity: 1;
  }
  to {
    top: 100;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    top: 130px;
    opacity: 1;
  }
  to {
    top: 70;
    opacity: 0;
  }
}

@media only screen and (max-width: 992px) {
  .contactUs-form button {
    margin-left: 20% !important;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 481px) {
  .contactUs-form {
    width: 100%;
    margin: 0px;
    box-sizing: border-box;
  }
  .form-control {
    min-width: 85% !important;
    display: block;
    margin-left: 25px;
  }

  .form-control textarea {
    width: 100%;
  }

  .contactUs-form button {
    margin-bottom: 20px;
  }
  #contactUssnackbar {
    left: 15%;
    max-width: 70%;
    min-width: 70%;
  }
  .contactUsBtnCnt{
   min-width: 85% !important;
 }
}