html, body {
  padding: 0;
  margin: 0;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Yekan Bakh FaNum" !important;
  direction: rtl;
  font-size: 14px;
  line-height: 30px;
  color: #384955;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

button, input, textarea {
  font-family: "Yekan Bakh FaNum" !important;
}

label {
  font-size: 15px;
  padding-right: 8px;
  padding-bottom: 8px;
  font-weight: 600;
  color: #384955;
}
label .required {
  color: red;
}

input, textarea {
  width: 100%;
  border: none;
  border: 1px solid #D8DDE4;
  border-radius: 8px;
  padding: 18px 25px;
  outline: none;
  font-size: 15px;
  box-sizing: border-box;
  transition: all 0.4s;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #C9CDCF;
  font-size: 13px;
  font-weight: 600;
}
input::placeholder, textarea::placeholder {
  color: #C9CDCF;
  font-size: 13px;
  font-weight: 600;
}
input:focus, textarea:focus {
  border: 1px solid grey;
}

input[type=submit] {
  width: 100%;
  height: 60px;
  border-radius: 8px;
  border: none;
  background-color: #3F95B4;
  color: white;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.4s;
}
input[type=submit]:hover {
  background-color: #337992;
}

.address {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 20px;
}
@media (max-width: 992px) {
  .address {
    gap: 20px;
  }
}
.address .box {
  width: 49%;
  border: 1px solid rgb(225, 237, 240);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: -moz-max-content;
  height: max-content;
}
@media (max-width: 992px) {
  .address .box {
    width: 100%;
  }
}
.address .box .text {
  display: flex;
  flex-direction: column;
}
.address .box .text h4 {
  font-weight: 800;
  font-size: 20px;
  color: #384955;
  margin: 0;
  padding-bottom: 40px;
}
.address .box .text .section {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 30px;
}
.address .box .text .section:hover a {
  color: #337992;
}
.address .box .text .section span {
  display: flex;
  align-items: center;
}
.address .box .text .section a {
  font-weight: 600;
  font-size: 14px;
  color: #384955;
  display: flex;
  transition: all 0.4s;
}
.address .box .map {
  margin-top: 20px;
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  height: 350px;
}
.address .box .map iframe {
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=address.css.map */