/* 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;
}
main {
  flex: 1;
}
img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body {
  font-family: "Vazirmatn", sans-serif;
  background-color: white;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-wrap: break-word !important;
}
/*globle*/
.titleSection {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px 0px;
}
.titleSection .btnGo {
  padding: 8px 18px;
  font-size: 20px;
  background-color: #3c3c3c;
  border: none;
  border-radius: 10px;
  color: white;
  transition: all 0.3s;
  border: 1px solid #3c3c3c;
}
.titleSection .btnGo:hover {
  color: #3c3c3c;
  background-color: transparent;
}
.titleSection h5 {
  font-size: 30px;
  font-weight: 700;
}
/*globle*/
/* start navbar */
.navbar {
  background-color: #f0f0f0;
}
.navbar .logo {
  width: 75px;
  height: 65px;
}
.navbar .container {
  padding: 20px 12px;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.linksHeader {
  display: flex;
  justify-content: space-between;
  border: 1px solid #5d5d5d;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 990px) {
  .linksHeader {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
  }
}
.linksHeader .nav-item a {
  padding: 15px !important;
  font-size: 18px;
  font-weight: 700;
}
.linksHeader .active,.linksHeader li{
  transition: all 0.3s;
}
.linksHeader .active,.linksHeader li:hover {
  background-color: #5d5d5d;
  color: white !important;
}
.linksHeader li:hover a{
  color: white !important;

}
.search-container {
  position: relative;
}
@media (max-width: 992px) {
  .search-container {
    margin-top: 10px;
  }
}
@media (max-width: 1200px) {
  .linksHeader .nav-item a {
    padding: 15px 10px !important;
  }
}
@media (min-width: 1200px) {
  .linksHeader {
    margin-left: 10px;
  }
}
@media (min-width: 992px) {
  .search-container {
    margin: 0px 5px;
  }
}
.search-input:focus-visible {
  outline: none;
}
.search-input {
  width: 100%;
  background-color: #f8f9fa;
  color: #5d5d5d;
  padding: 12px;
  padding-right: 30px;
  border: 1px solid #5d5d5d;
  border-radius: 10px;
  font-size: 18px;
}
.search-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: #5d5d5d;
}
.searchBtn {
  border: 0;
}
/* end navbar */
/*footer*/
footer {
  background-color: #3c3c3c;
  padding: 60px 80px;
}
@media (max-width: 500px) {
  footer {
    padding: 60px 12px;
    text-align: center;
  }
}
footer .media li {
  background-color: #535353;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  color: white;
  margin: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .imageLogo {
  width: 110px;
  height: 96px;
}
footer .links {
  color: white;
  font-size: 18px;
}
footer .des {
  font-size: 18px;
  line-height: 35px;
  color: white;
  text-align: center;
}
