@font-face {
  font-family: "vazir";
  src: url("../fonts/vazir.eot") format("eot");
  src:
    url("../fonts/vazir.ttf") format("truetype"),
    url("../fonts/vazir.woff") format("woff"),
    url("../fonts/vazir.woff") format("woff2");
}

* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  direction: rtl;
  font-family: "vazir";
}

input,
textarea,
button {
  font-family: "vazir";
}

.container {
  width: 100%;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.align-items {
  justify-content: space-between;
  align-items: center;
}

.mt-5 {
  margin-top: 60px;
}

.title {
  margin-bottom: 2rem;
  flex: 0 0 100%;
  max-width: 100%;
  text-align: center;
}

.title h2 {
  font-size: 3rem;
  position: relative;
  padding-bottom: 10px;
}

.title h2::before {
  content: "";
  position: absolute;
  right: 50%;
  width: 10rem;
  height: 0.2rem;
  background: #ff0a0a;
  bottom: 0;
  transform: translateX(50%);
  -webkit-transform: translateX(50%);
  -moz-transform: translateX(50%);
  -ms-transform: translateX(50%);
  -o-transform: translateX(50%);
}

.title p {
  font-size: 1.5rem;
  margin-top: 10px;
}


/* header */
header {
  width: 100%;
  border-bottom: 1px solid #474747;
  background: #ffffff;
  top: 0;
  right: 0;
  display: flex;
  width: 100%;
}


header .navbar {
  display: flex;
}

header .navbar ul {
  display: flex;
}

header .navbar ul li {
  margin-left: 35px;
}

header .navbar ul li a {
  font-size: 1.8rem;
  line-height: 40px;
  color: #000000;
  position: relative;
  display: block;
  z-index: 1;
}


header .brand-name .logo img {
  width: 100px;
  height: 60px;
  margin-top: 5px;
}



/* content */


#content .content-box{
  width: 95%;
  background-color: #e0e0e0;
  margin: 30px auto;
  border-radius: 10px;
  padding-bottom: 50px;
}

#content .details-box{
  width: 95%;
  background-color: #ffffff;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

#content .content-box h1{
  font-size: 30px;
  padding: 10px;
}

#content .content-box h2{
  font-size: 25px;
  padding: 10px;
}

#content .content-box h3{
  font-size: 20px;
  padding: 10px;
}

#content .content-box p{
  font-size: 15px;
  padding: 10px;
}

#content .content-box img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}



























/* footer */

.footer {
  background: url(../images/footer.svg);
  color: #000;
  padding: 10rem;
  margin-top: 10rem;
  background-size: cover;
  height: 410px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer-about,
.footer-subscribe,
.footer-contact {
  flex: 1 1 250px;
}

.footer h3 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 22px;
  font-weight: 900;
}

.footer p {
  color: #fff;
  font-size: 14px;
}

.footer-subscribe form,
.footer-contact form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer input,
.footer textarea {
  padding: 0.6rem;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  background: #fff;
  color: #fff;
}

.footer textarea {
  height: 100px;
}

.footer button {
  color: #fff;
  background: #ff0a0a;
  border: 0.2rem solid #ff0a0a;
  margin-top: 1rem;
  font-size: 1.7rem;
  padding: 7px 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  border-radius: 10px;
}

.footer button:hover {
  background: #fff;
  color: #000;
  cursor: pointer;
}

.footer textarea {
  resize: none;
  min-height: 50px;
}

.footer-buttom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
}

.footer .footer-content .footer-about {
  font-size: 14px;
}

.footer .footer-content .footer-about li {
  color: #fff;
  margin-top: 15px;
}

.footer .copy-right {
  text-align: center;
  padding: 15px;
}