:root {
  --first-color: #e2441a;
}
/* CSS Reset - Resetting default styles applied by browsers */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

/* Remove list styles for ul, ol */
ul,
ol {
  list-style: none;
}

/* Remove default link styles */
a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: inherit;
}
body {
  font-family: "Vazirmatn", sans-serif;
  background-color: #faf6f4;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-wrap: break-word !important;
}

@media (max-width: 500px) {
  body {
    background-color: white;
  }
}
main {
  flex: 1;
}
img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.titleSection .title {
  margin: auto;
  margin-bottom: 40px;
  max-width: 600px;
  width: 100%;
  font-size: 30px;
  font-weight: 600;
  color: black;
  line-height: 45px;
  padding: 20px;
  /* height: 60px;
  overflow: hidden; */
  text-align: center;
  background: linear-gradient(
    90deg,
    rgba(212, 55, 20, 0) 0%,
    rgba(255, 178, 159, 1) 50%,
    rgba(228, 95, 62, 0) 100%
  );
}

.contant .logo {
  position: absolute;
  background-color: #e2441a;
  width: 170px;
  height: 77px;
  padding: 20px;
  left: 20px;
  top: -40px;
  border-radius: 10px;
}
body[dir="ltr"] .contant .logo {
  right: 20px;
  left: initial;
}
.titleSection h5 {
  font-size: 30px;
  font-weight: 700;
  color: #e2441a;
}
@media (max-width: 500px) {
  .titleSection h5 {
    margin-bottom: 35px;
  }
}
.about .contant {
  position: relative;
  background-color: white;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #f9e4da;
  margin-bottom: 20px;
  min-height: 400px;
}
.about .contant p {
  margin-top: 35px;
  font-size: 18px;
  line-height: 35px;
}
