.container {
  max-width: width auto;
}

#banner-heading {
  letter-spacing: 0.3rem;
  color: #ffffff;
}

.title-brand {
  margin-top: 80px;
}

.box-shadow {
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.5);
}

.adress-box hr {
  background-color: #eac435;
  border: solid 1px #eac435;
}

.title {
  color: #ffffff;
  font-weight: 500;
}

.title-lead {
  color: #000000;
}

.btn-send {
  width: 60%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border: 0;
  border-radius: 10px;
  box-sizing: border-box;
  cursor: pointer;
  font-weight: bold;
  color: #fff;
  font-family: myVazirFont;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  font-size: 1.125rem;
  line-height: 1.74rem;
}

.btn-send:hover {
  transform: scale(1.1);
  background-color: #ff6600;
  border: none;
}

/* responsive */

@media (min-width: 768px) {
  html {
    font-size: 1rem;
  }
}

/* ------------------------------------------------------------------------------ */

input {
  outline: none;
}

textarea {
  outline: none;
}

/* Style for SnackBar */
#snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;

  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  font-size: 17px;
}

#snackbar.show {
  background-color: rgb(1, 100, 43);
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 3.5s;
}

#snackbar.noshow {
  background-color: rgb(100, 24, 1);
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 3.5s;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

#backVector {
  animation: mymove 0.6s infinite;
}

@keyframes mymove {
  form {
    margin-right: 0;
  }

  to {
    margin-right: 5px;
  }
}

/*End Style for SnackBar */
.labels{
  font-weight: bold;
}