@charset "UTF-8";
.title-in-content h2 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.5em;
    padding-bottom: 15px;
    position: relative;
	margin-bottom:10px;
}
.title-in-content h2:before {
    content: "";
    position: absolute;
    inset-inline-start: 0px;
    bottom: 0;
    height: 5px;
    width: 55px;
    background-color: #ccc;
}
.title-in-content h2:after {
    content: "";
    position: absolute;
    inset-inline-start: 0px;
    bottom: 2px;
    height: 1px;
    width: 95%;
    max-width: 255px;
    background-color: #ccc;
}
/*! Flickity v2.2.1
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: 0;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100% !important;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.flickity-button {
  position: absolute;
  background: hsla(0deg, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: #fff;
  cursor: pointer;
}

.flickity-button:focus {
  outline: 0;
  box-shadow: 0 0 0 5px #19f;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

:root {
  --primary-color: #404040;
  --secondary-color: #fff;
  --third-color: #444444;
  --light-blue: #0AA1DD99;
  --yellow: #FFE55D;
  --blue: #2155CD;
  --red: #E51C22;
  --margin-l: 60px;
  --margin-m: 30px;
  --margin-s: 15px;
  --color1-RGB:66, 72, 116;
  --color2-RGB:166, 177, 225;
  --color3-RGB:220, 214, 247;
  --color4-RGB:244, 238, 255;
}

@media (max-width: 992px) {
  :root {
    --margin-l: 30px;
    --margin-m: 15px;
    --margin-s: 7px;
  }
}
.container {
  margin: 0 auto;
}

@media (min-width: 1440px) {
  .container {
    max-width: 1290px;
  }
}
@media (max-width: 1440px) {
  .container {
    max-width: 85vw;
  }
}
@media (max-width: 990px) {
  .container {
    width: 90%;
  }
}
body,
a,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
  font-family: "vazir";
}

body {
  background-color: #F5F7FC;
}

body.modal-open {
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Vazir FD;
  margin: 0;
  overflow-x: hidden;
  position: relative;
  text-align: right;
  font-size: 100%;
  color: var(--primary-color);
}

.wrapper {
  font-size: 100%;
}

.mm-searchfield input::placeholder {
  color: var(--secondary-color);
}

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

p,
ul,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s linear;
}
a:hover {
  text-decoration: none;
}

img {
  border: 0;
}

img:not([src]) {
  visibility: hidden;
}

/* Fixes Firefox anomaly during image load */
@-moz-document url-prefix() {
  img:-moz-loading {
    visibility: hidden;
  }
}
.wrapper {
  overflow: hidden;
  position: relative;
  min-height: 100vh;
}

.back-shadow {
  background-color: rgba(0, 0, 0, 0.2);
  position: fixed;
  right: -100vw;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 30;
  transition: all 0.3s ease-in-out;
  cursor: url("../img/cancel.png"), auto;
}
.back-shadow--open {
  right: 0;
}

#searchmodal {
  background: rgba(0, 0, 0, 0.36);
  position: fixed;
  top: 0;
  height: 100%;
  width: 100%;
  left: 0;
  display: none;
  z-index: 99999;
}
#searchmodal .modal-content {
  background-color: unset;
  border: none;
}
#searchmodal .close {
  opacity: 1;
  z-index: unset;
  position: absolute;
  right: 30px;
  top: 30px;
  font-size: 4em;
  color: var(--secondary-color);
  background: 0 0;
  border: none;
}
#searchmodal .form-container {
  width: 50%;
  margin: 10% auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#searchmodal .form-container form {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}
#searchmodal .form-container form input {
  padding: 10px 10px;
  background: unset;
  width: 100%;
  max-width: 450px;
  color: var(--secondary-color);
  border: none;
  border-bottom: 3px solid #fff;
  font-size: 1.5em;
}
#searchmodal .form-container form input::-webkit-input-placeholder {
  color: var(--secondary-color);
}
#searchmodal .form-container form input:-ms-input-placeholder {
  color: var(--secondary-color);
}
#searchmodal .form-container form input::-ms-input-placeholder {
  color: var(--secondary-color);
}
#searchmodal .form-container form input::placeholder {
  color: var(--secondary-color);
}
#searchmodal .form-container form input:focus {
  outline: 2px double #e9c676;
}
#searchmodal .form-container form span {
  margin-top: 0.7em;
  font-size: 1.1em;
  color: var(--secondary-color);
}

.back-shadow__transparet {
  opacity: 0;
  position: fixed;
  right: -100vw;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 30;
  transition: all 0.3s ease-in-out;
}
.back-shadow__transparet--open {
  right: 0;
}

.go-top {
  position: fixed;
  right: 50px;
  bottom: 50px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  z-index: 550;
  background: #1ebeb6;
}
.go-top i {
  font-size: 18px;
  color: var(--secondary-color);
  font-weight: bolder;
}
.go-top:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.go-top--show {
  opacity: 1;
  visibility: visible;
}

a span {
  pointer-events: none;
}
a:hover {
  color: #1ebeb6;
}

@media (max-width: 991.98px) {
  .sm {
    display: none !important;
  }
  .mburger {
    display: flex;
    flex-direction: column;
  }
  .mburger b {
    background-color: #1e1e1e;
    height: 3px;
    width: 25px;
    border-radius: 8px;
    display: flex;
  }
  .mburger b:not(:last-child) {
    margin-bottom: 5px;
  }
}
.color-back {
  position: fixed;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 98;
}

.color-back--open {
  width: 100%;
  cursor: url("../img/close.png"), auto;
}

.accessibility__btn {
  z-index: 700;
  width: 60px;
  height: 60px;
  border-radius: 0px 15px 15px 0px;
  background: #ffd500;
  position: fixed;
  left: 0px;
  top: calc(50% - 20px);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.accessibility__btn i {
  font-size: 2.2em;
}

.accessibility__btn:hover {
  color: black;
}

.accessibility__btn:hover .accessibility__tooltip {
  opacity: 1;
  visibility: visible;
}

.accessibility__tooltip {
  opacity: 0;
  visibility: hidden;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  padding: 5px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  color: black;
  background-color: #ffd500;
  border-radius: 5px;
  position: fixed;
  left: 65px;
  top: calc(50% - 17px);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.accessibility__tooltip::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  position: absolute;
  left: -7px;
  border-right: 10px solid #ffd500;
}

.accessibility__filter-container {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  pointer-events: none;
}

.accessibility__menu {
  padding-right: 20px;
  padding-left: 20px;
}

.accessibility__menu .text-custom-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.accessibility__menu .text-custom-info .item {
  -ms-flex-preferred-size: calc(50% - 7.5px);
  flex-basis: calc(50% - 7.5px);
}

.accessibility__menu .text-custom-info .item:first-child {
  margin-left: 15px;
}

.accessibility__menu .text-custom-info .item input {
  width: 100%;
  margin-top: 5px;
}

.accessibility__menu .font-resize {
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 15px;
}

.accessibility__menu .font-resize a {
  height: 38px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.st-menu-wrap {
  padding: 15px 0;
}

.st-menu-wrap h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  border-bottom: 1px solid #434343;
  display: block;
  padding-bottom: 10px;
}

.p-radio > input[type=radio] + .p-radio-style {
  float: right;
}

.p-radio > span:first-child {
  margin-left: 0;
  margin-right: 10px;
}

.st-menu-area {
  background: #1f2024;
  padding: 15px;
  margin-bottom: 2px;
}

.st-menu-area .st-menu-item {
  padding: 3px 0;
}

.st-menu-item .p-radio > span:first-child {
  color: #fff;
  font-size: 16px;
}

.st-menu-item .p-radio > span:first-child:hover {
  color: #ffb20e;
}

.st-menu-hr {
  background: #ff3486;
}

.alert .close span {
  display: block;
}

.font-resize {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
}

.font-resize > button {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
  font-size: 1.5em;
  color: #fff;
  margin-bottom: 0;
  border: 1px solid #000;
  cursor: pointer;
}

.font-resize > button:hover {
  background: #ffb20e;
  color: #fff;
}

label.p-radio {
  display: block;
  cursor: pointer;
  margin-bottom: 0 !important;
}

.alert > p {
  padding-left: 0;
  text-align: justify;
  color: #000;
}

.alert > h4 {
  text-shadow: 0 2px 0 #fff;
  color: #000;
}

.reset-colors {
  background: #ff9103;
  border-radius: 10px;
  padding: 0 5px;
  color: #000;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.reset-colors:hover {
  background: #444;
  color: #fff;
}

.alert .close {
  color: #000;
  font-weight: 300;
  padding: 0 5px;
  font-size: 26px;
  text-shadow: 0 0 0 #000;
}

.color-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.color-box span {
  width: 80px;
  height: 80px;
  background: #000;
  border: 2px solid #fff;
  -webkit-box-shadow: 1px 1px 1px black;
  box-shadow: 1px 1px 1px black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: all ease-in 0.3s;
  transition: all ease-in 0.3s;
  -webkit-transition: all ease-in 0.2s;
  -moz-transition: all ease-in 0.2s;
  -ms-transition: all ease-in 0.2s;
  -o-transition: all ease-in 0.2s;
}

.color-box span:hover {
  border: 2px solid #ffb20e;
}

.color-box span i {
  height: 14px;
}

.color-box span {
  position: relative;
  cursor: pointer;
}

.color-box span::after,
.color-box span::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 50%;
  height: 50%;
}

.color-box span.website-color-1 {
  background: #16528e;
}

.color-box span.website-color-1::before {
  top: 0;
  background: #e54b4b;
}

.color-box span.website-color-1::after {
  bottom: 0;
  background: #0082c8;
}

.color-box span.website-color-2 {
  background: #ff7062;
}

.color-box span.website-color-2::before {
  top: 0;
  background: #a9e2ff;
}

.color-box span.website-color-2::after {
  bottom: 0;
  background: #32a2ad;
}

.color-box span.website-color-3 {
  background: #fff;
}

.color-box span.website-color-3::before {
  top: 0;
  background: #1f1f1f;
}

.color-box span.website-color-3::after {
  bottom: 0;
  background: #404042;
}

body.website-color-1 .header-menu {
  background: #16528e;
}

body.website-color-1 .box-area .content .portfolio-content h2 a:hover,
body.website-color-1 .list-news .content ul li a:hover,
body.website-color-1 .post-item .post-item-description > h2,
body.website-color-1 .post-item .post-item-description > h2 > a,
body.website-color-1 .post-thumbnail-list .post-thumbnail-entry .post-thumbnail-content a:hover {
  color: #004e88;
}

body.website-color-1 .post-item .post-image .post-meta-category {
  background-color: #e54b4b;
}

body.website-color-1 #espritmenu ul li:hover,
body.website-color-1 .box-area .title.back-color h2,
body.website-color-1 .ms-tabs .ms-thumb-frame-selected {
  background: #e54b4b;
}

body.website-color-1 .box-area #espritmenu ul > li > a::before {
  border-top: 5px solid #e54b4b;
}

.svg-wrapper svg g > a:hover path,
body.website-color-1 .svg-wrapper svg a.selected path,
body.website-color-1 .svg-wrapper svg > a:hover path {
  border-top: 5px solid #e54b4b;
}

body.website-color-1 .box-area .title,
body.website-color-1 .box-area .title a.link-archive:hover {
  border-bottom: 1px solid #0082c8;
}

body.website-color-1 .bazresi-address-phone i,
body.website-color-1 .list-news .content ul li::before,
body.website-color-1 .portfolio-item .portfolio-zoom-icon i {
  color: #0082c8;
}

body.website-color-2 .header-menu {
  background: #ff7062;
}

body.website-color-2 .box-area .content .portfolio-content h2 a:hover,
body.website-color-2 .list-news .content ul li a:hover,
body.website-color-2 .post-item .post-item-description > h2,
body.website-color-2 .post-item .post-item-description > h2 > a,
body.website-color-2 .post-thumbnail-list .post-thumbnail-entry .post-thumbnail-content a:hover {
  color: #ff7062;
}

body.website-color-2 .post-item .post-image .post-meta-category {
  background-color: #a9e2ff;
}

body.website-color-2 #espritmenu ul li:hover,
body.website-color-2 .box-area .title.back-color h2,
body.website-color-2 .ms-tabs .ms-thumb-frame-selected {
  background: #a9e2ff;
}

body.website-color-2 .box-area #espritmenu ul > li > a::before {
  border-top: 5px solid #a9e2ff;
}

.svg-wrapper svg g > a:hover path,
body.website-color-2 .svg-wrapper svg a.selected path,
body.website-color-2 .svg-wrapper svg > a:hover path {
  border-top: 5px solid #a9e2ff;
}

body.website-color-2 .box-area .title,
body.website-color-2 .box-area .title a.link-archive:hover {
  border-bottom: 1px solid #32a2ad;
}

body.website-color-2 .bazresi-address-phone i,
body.website-color-2 .list-news .content ul li::before,
body.website-color-2 .portfolio-item .portfolio-zoom-icon i {
  color: #32a2ad;
}

body.website-color-3 .st-content {
  background: #282828;
}

body.website-color-3 #header.header-sticky .header-inner {
  background-color: #505050 !important;
}

body.website-color-3 #header[data-transparent=true].header-sticky.sticky-active .header-inner {
  background-image: none;
}

body.website-color-3 .sticky-active .logo-bazresi {
  background: 0 0;
}

body.website-color-3 .sticky-active .logo-bazresi a > img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

body.website-color-3 .parallax-container {
  background: #39393b url("") !important;
}

body.website-color-3 #footer .footer-content {
  background: #1c1c1c url("") no-repeat center center;
}

body.website-color-3 #footer .copyright-content {
  background-color: #131313;
}

body.website-color-3 .header-menu {
  background-color: #1f1f1f;
}

body.website-color-3 #espritmenu > ul > li > a:hover {
  color: fff !important;
}

body.website-color-3 #espritmenu ul > li > a::before {
  border-top: 5px solid #fff;
}

body.website-color-3 .services-links {
  background: #404042;
}

body.website-color-3 .services-links a {
  color: #fff !important;
}

body.website-color-3 #header[data-transparent=true].dark .header-inner {
  background-color: #505050;
  background-image: none;
}

body.website-color-3 .logo-bazresi {
  background: url(../img/header-center-logo-black.png) no-repeat center top;
}

body.website-color-3 #topbar {
  border-bottom: 3px solid #4f4f4f;
  margin-bottom: 0;
}

body.website-color-3 #header .header-inner #logo a > img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

body.website-color-3 .box-area .content {
  background: #404042;
}

body.website-color-3 .news-slider .card {
  background: #404042;
}

body.website-color-3 .main-news-slider.post-sub-site-item .post-item-description h3,
body.website-color-3 .main-news-slider.post-sub-site-item .post-item-description h2,
body.website-color-3 .main-news-slider.post-sub-site-item .post-item-description h2 a,
body.website-color-3 .main-news-slider.post-sub-site-item .post-item-description p {
  color: #fff;
}

body.website-color-3 .ms-tabs .ms-thumb-frame {
  background-color: #1c1c1c;
  color: #fff;
}

body.website-color-3 .ms-tabs.ms-has-thumb .ms-tab-context p {
  color: #fff;
}

body.website-color-3 .ms-tabs.ms-dir-v.ms-align-left .ms-thumb-frame-selected .ms-thumb-ol {
  border-left-color: #1f1f1f;
}

body.website-color-3 .ms-tabs .ms-thumb-frame-selected {
  -webkit-box-shadow: 2px 0 0 #1f1f1f inset;
  box-shadow: 2px 0 0 #1f1f1f inset;
}

body.website-color-3 .post-item .post-item-wrap {
  background-color: #404042;
}

body.website-color-3 .ms-tabs .ms-thumb-frame {
  background-color: #1f1f1f;
  border: solid -1px #fff;
}

body.website-color-3 .box-area .title a.link-archive {
  color: #fff;
}

body.website-color-3 .box-area .title.back-full-color {
  background: #404042;
}

body.website-color-3 .box-area .title h2 {
  background: #404042;
  color: #fff;
}

body.website-color-3 .btn.btn-danger {
  background-color: #404042;
  border-color: #404042;
}

body.website-color-3 .other-links .item h3 a {
  color: #fff;
}

body.website-color-3 .box-area .content .portfolio-content h2 a,
body.website-color-3 .list-news .content ul li a,
body.website-color-3 .post-item .post-item-description > h2,
body.website-color-3 .post-item .post-item-description > h2 > a,
body.website-color-3 .post-thumbnail-list .post-thumbnail-entry .post-thumbnail-content a {
  color: #fff;
}

body.website-color-3 .post-item .post-image .post-meta-category {
  background-color: #000;
}

body.website-color-3 #espritmenu ul li:hover,
body.website-color-3 .box-area .title.back-color h2,
body.website-color-3 .ms-tabs .ms-thumb-frame-selected {
  background: #404042;
}

body.website-color-3 .box-area #espritmenu ul > li > a::before {
  border-top: 5px solid #000;
}

.svg-wrapper svg g > a:hover path,
body.website-color-3 .svg-wrapper svg a.selected path,
body.website-color-3 .svg-wrapper svg > a:hover path {
  border-top: 5px solid #000;
}

body.website-color-3 .box-area .title,
body.website-color-3 .box-area .title a.link-archive:hover {
  border-bottom: 1px solid #000;
}

body.website-color-3 .bazresi-address-phone i,
body.website-color-3 .list-news .content ul li::before,
body.website-color-3 .portfolio-item .portfolio-zoom-icon i {
  color: #fff;
}

body.website-color-3 {
  background: #fdbe2d;
}

body.website-color-3 {
  background: #e83b5d;
}

.st-container,
.st-content,
.st-pusher {
  height: 100%;
}

.st-content {
  background: #f9f9f9;
}

.st-content,
.st-content-inner {
  position: relative;
}

.st-container {
  position: relative;
  overflow: hidden;
}

.st-pusher {
  position: relative;
  left: 0;
  z-index: 99;
  height: 100%;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.st-pusher::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  background: rgba(40, 53, 70, 0.4);
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
  transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
  z-index: 999;
}

.st-menu-open .st-pusher::after {
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.st-menu {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  visibility: hidden;
  width: 300px;
  height: 100%;
  background: #292e35;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.st-menu::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  content: "";
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.st-menu-open .st-menu::after {
  width: 0;
  height: 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
  transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
}

.st-effect-1.st-menu {
  visibility: visible;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.st-effect-1.st-menu-open .st-effect-1.st-menu {
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.st-effect-1.st-menu::after {
  display: none;
}

.st-effect-4.st-menu-open .st-pusher {
  -webkit-transform: translate3d(300px, 0, 0) !important;
  transform: translate3d(300px, 0, 0) !important;
  cursor: url(../img/close.png), pointer;
}

.st-effect-4.st-menu {
  z-index: 1;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  position: fixed;
}

.st-effect-4.st-menu-open .st-effect-4.st-menu {
  visibility: visible;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  background: #000;
  overflow: auto;
}

.st-effect-4.st-menu::after {
  display: none;
}

.no-csstransforms3d .st-pusher,
.no-js .st-pusher {
  padding-left: 300px;
}

.modal-xlg {
  max-width: 1400px;
}

.modal {
  top: 50%;
}

.modal-content {
  background-color: transparent;
  border: 0 solid rgba(0, 0, 0, 0.2);
}

.modal-backdrop.show {
  opacity: 0.9;
}

.modal-open .modal {
  height: 100vh;
}

.modal-top-links .card-body a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #fff;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 50px 15px;
}

a.btn {
  min-width: 200px;
  width: auto;
  padding: 18px 0;
  /*! position:static; */
  /*! top:50%; */
  /*! left:50%; */
  -webkit-transform: translate(-50%, -50%);
  transform: translate(0, 0);
  border-radius: 0;
  background: #f4f8fb;
  background-color: #f4f8fb;
}

.modal-top-links .card-deck {
  margin: 0 -15px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.modal-top-links .card-deck .card {
  margin: 0 0 1rem;
}

.classes_list .button-item {
  display: block;
  padding: 0.75em;
  margin: 0 0 5px;
  border-radius: 2px;
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16), 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16), 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: -webkit-box-shadow 0.2s ease-out;
  transition: -webkit-box-shadow 0.2s ease-out;
  transition: box-shadow 0.2s ease-out;
  transition: box-shadow 0.2s ease-out, -webkit-box-shadow 0.2s ease-out;
  text-decoration: none;
  border-bottom: none !important;
  font-size: 16px;
  background: #f4f8fb;
  width: 100%;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.classes_list .button-item:hover {
  color: black;
  background-color: #ffd500;
}

.classes_list .button-item.active {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #ffd500;
}

body.zones {
  -webkit-box-shadow: inset 0 0 0 1px rgba(128, 0, 128, 0.1) !important;
  box-shadow: inset 0 0 0 1px rgba(128, 0, 128, 0.1) !important;
}

body.zones:hover {
  -webkit-box-shadow: inset 0 0 0 1px purple !important;
  box-shadow: inset 0 0 0 1px purple !important;
}

body.zones * {
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 0, 0, 0.1) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 0, 0, 0.1) !important;
}

body.zones :hover {
  -webkit-box-shadow: inset 0 0 0 1px red !important;
  box-shadow: inset 0 0 0 1px red !important;
}

body.zones * + * {
  -webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 255, 0.1) !important;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 255, 0.1) !important;
}

body.zones * + :hover {
  -webkit-box-shadow: inset 0 0 0 1px #00f !important;
  box-shadow: inset 0 0 0 1px #00f !important;
}

body.zones * + * + * {
  -webkit-box-shadow: inset 0 0 0 1px rgba(0, 128, 0, 0.1) !important;
  box-shadow: inset 0 0 0 1px rgba(0, 128, 0, 0.1) !important;
}

body.zones * + * + :hover {
  -webkit-box-shadow: inset 0 0 0 1px green !important;
  box-shadow: inset 0 0 0 1px green !important;
}

body.zones * + * + * + * {
  -webkit-box-shadow: inset 0 0 0 1px rgba(128, 0, 128, 0.1) !important;
  box-shadow: inset 0 0 0 1px rgba(128, 0, 128, 0.1) !important;
}

body.zones * + * + * + :hover {
  -webkit-box-shadow: inset 0 0 0 1px purple !important;
  box-shadow: inset 0 0 0 1px purple !important;
}

body.zones * + * + * + * + * {
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 0, 0, 0.1) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 0, 0, 0.1) !important;
}

body.zones * + * + * + * + :hover {
  -webkit-box-shadow: inset 0 0 0 1px red !important;
  box-shadow: inset 0 0 0 1px red !important;
}

body.zones * + * + * + * + * + * {
  -webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 255, 0.1) !important;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 255, 0.1) !important;
}

body.zones * + * + * + * + * + :hover {
  -webkit-box-shadow: inset 0 0 0 1px #00f !important;
  box-shadow: inset 0 0 0 1px #00f !important;
}

body.zones * + * + * + * + * + * + * {
  -webkit-box-shadow: inset 0 0 0 1px rgba(0, 128, 0, 0.1) !important;
  box-shadow: inset 0 0 0 1px rgba(0, 128, 0, 0.1) !important;
}

body.zones * + * + * + * + * + * + :hover {
  -webkit-box-shadow: inset 0 0 0 1px green !important;
  box-shadow: inset 0 0 0 1px green !important;
}

body.grayscale,
body.zones.grayscale {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.wrapper.colorblind1,
body.zones.colorblind1 {
  -webkit-filter: url(../img/filters.svg#protanopia) grayscale(0) !important;
  filter: url(../img/filters.svg#protanopia) grayscale(0) !important;
}

body _:-moz-tree-row(hover),
.wrapper.colorblind1,
body.zones.colorblind1 {
  filter: url(../img/filters.svg#protanopia) grayscale(0) !important;
}

.wrapper.colorblind2,
body.zones.colorblind2 {
  -webkit-filter: url(../img/filters.svg#protanomaly) grayscale(0) !important;
  filter: url(../img/filters.svg#protanomaly) grayscale(0) !important;
}

body _:-moz-tree-row(hover),
.wrapper.colorblind2,
body.zones.colorblind2 {
  filter: url(../img/filters.svg#protanomaly) grayscale(0) !important;
}

.wrapper.colorblind3,
body.zones.colorblind3 {
  -webkit-filter: url(../img/filters.svg#deuteranopia) grayscale(0) !important;
  filter: url(../img/filters.svg#deuteranopia) grayscale(0) !important;
}

body _:-moz-tree-row(hover),
.wrapper.colorblind3,
body.zones.colorblind3 {
  filter: url(../img/filters.svg#deuteranopia) grayscale(0) !important;
}

.wrapper.colorblind4,
body.zones.colorblind4 {
  -webkit-filter: url(../img/filters.svg#deuteranomaly) grayscale(0) !important;
  filter: url(../img/filters.svg#deuteranomaly) grayscale(0) !important;
}

body _:-moz-tree-row(hover),
.wrapper.colorblind4,
body.zones.colorblind4 {
  filter: url(../img/filters.svg#deuteranomaly) grayscale(0) !important;
}

.wrapper.colorblind5,
body.zones.colorblind5 {
  -webkit-filter: url(../img/filters.svg#tritanopia) grayscale(0) !important;
  filter: url(../img/filters.svg#tritanopia) grayscale(0) !important;
}

body _:-moz-tree-row(hover),
.wrapper.colorblind5,
body.zones.colorblind5 {
  filter: url(../img/filters.svg#tritanopia) grayscale(0) !important;
}

.wrapper.colorblind6,
body.zones.colorblind6 {
  -webkit-filter: url(../img/filters.svg#tritanomaly) grayscale(0) !important;
  filter: url(../img/filters.svg#tritanomaly) grayscale(0) !important;
}

body _:-moz-tree-row(hover),
.wrapper.colorblind6,
body.zones.colorblind6 {
  filter: url(../img/filters.svg#tritanomaly) grayscale(0) !important;
}

.wrapper.colorblind7,
body.zones.colorblind7 {
  -webkit-filter: url(../img/filters.svg#achromatopsia) grayscale(0) !important;
  filter: url(../img/filters.svg#achromatopsia) grayscale(0) !important;
}

body _:-moz-tree-row(hover),
body.colorblind7,
body.zones.colorblind7 {
  filter: url(../img/filters.svg#achromatopsia) grayscale(0) !important;
}

.wrapper.colorblind8,
body.zones.colorblind8 {
  -webkit-filter: url(../img/filters.svg#achromatomaly) grayscale(0) !important;
  filter: url(../img/filters.svg#achromatomaly) grayscale(0) !important;
}

body _:-moz-tree-row(hover),
.wrapper.colorblind8,
body.zones.colorblind8 {
  filter: url(../img/filters.svg#achromatomaly) grayscale(0) !important;
}

.st-menu .btn-group a.btn {
  min-width: auto !important;
  left: 0;
  top: 0;
  font-size: 1.2em;
  margin: 0 !important;
}

.st-menu .btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.news-info-wrap .news-tools li.font-resize a.btn {
  min-width: auto;
  left: 0;
  top: 0;
  padding: 6px 12px 3px;
  margin: 0 !important;
  font-size: 16px;
}

.ostan-menu {
  background-color: #00bbda;
  height: 30px;
}

.ostan-menu ul li {
  list-style: none;
  float: right;
  border-left: 1px solid #009bb5;
}

.ostan-menu a {
  color: #004e88 !important;
}

.ostan-menu ul li a {
  display: block;
  line-height: 22px;
  padding: 4px 10px;
  font-weight: 500;
  font-size: 13px;
  -webkit-transition: margin 0.4s ease, padding 0.4s ease;
  transition: margin 0.4s ease, padding 0.4s ease;
}

.ostan-menu ul li::before {
  /*! content: ''; */
  /*! position: absolute; */
  /*! left: 0px; */
  /*! top: 50%; */
  /*! width: 0px; */
  /*! height: 30px; */
  /*! background: #00365e; */
  /*! transform: translateY(-50%); */
}

.ostan-menu ul li a:hover {
  color: #fff !important;
}

.ostan-menu ul li:last-child {
  border-left: 0;
}

.search-form .form-control {
  color: #fff;
}

.es-search-result strong {
  background-color: #47b0de;
  padding: 1px;
}

.main-nav:after {
  clear: both;
  content: " ";
  display: block;
  height: 0;
  font: 0/0 serif;
  overflow: hidden;
}

.nav-brand {
  float: left;
  margin: 0;
}

.nav-brand a {
  display: block;
  padding: 12px 12px 12px 20px;
  color: #555;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 17px;
  text-decoration: none;
}

#miz-main-menu {
  clear: both;
}

@media (min-width: 768px) {
  #miz-main-menu {
    float: right;
    clear: none;
  }
}
.main-menu-btn {
  float: right;
  margin: 6px 10px;
  position: relative;
  display: inline-block;
  width: 29px;
  height: 29px;
  text-indent: 29px;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.main-menu-btn-icon,
.main-menu-btn-icon:after,
.main-menu-btn-icon:before {
  position: absolute;
  top: 50%;
  left: 2px;
  height: 2px;
  width: 24px;
  background: #555;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.main-menu-btn-icon:before {
  content: "";
  top: -7px;
  left: 0;
}

.main-menu-btn-icon:after {
  content: "";
  top: 7px;
  left: 0;
}

#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon {
  height: 0;
  background: 0 0;
}

#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:before {
  top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:after {
  top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#main-menu-state {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

#main-menu-state:not(:checked) ~ #miz-main-menu {
  display: none;
}

#main-menu-state:checked ~ #miz-main-menu {
  display: block;
}

@media (min-width: 768px) {
  .main-menu-btn {
    position: absolute;
    top: -99999px;
  }
  #main-menu-state:not(:checked) ~ #miz-main-menu {
    display: block;
  }
}
[class*=mm-menu_fx-listitems-] .mainmenu-mobile .mm-listitem:last-child {
  background: #fbbc05;
  color: #000;
}

.alert-browser-check {
  position: fixed;
  bottom: 30px;
  right: 30px;
  color: #fff;
  font-size: 21px;
  padding: 20px 30px 20px 30px;
}

.alert-browser-check .close {
  color: #fff;
  left: auto;
  right: 0;
  opacity: 1;
}

.journals .es-post-dis .es-book-img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

#st-trigger-effects button {
  position: fixed;
  top: 240px;
  left: 0;
  z-index: 99;
  background: 0 0;
  border: 0 solid;
  background: #ff9f0b;
  -webkit-border-top-right-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  -moz-border-radius-topright: 5px;
  -moz-border-radius-bottomright: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 10px;
  line-height: 0;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  cursor: pointer;
}

#st-trigger-effects button:hover {
  padding: 10px 15px;
  background: #ff9b00;
}

#st-trigger-effects button i {
  font-size: 2em;
}

#menu-1 {
  -webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  left: -100%;
}

.menu-1--open {
  visibility: visible;
  left: 0 !important;
  z-index: 99 !important;
  top: 0 !important;
  -webkit-transform: unset !important;
  transform: unset !important;
}

.color-back {
  position: fixed;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 98;
}

.color-back--open {
  width: 100%;
  cursor: url("../img/close.png"), auto;
}

.text-customize {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 15px;
}

.text-customize button {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  border: 0;
  padding: 7px 0;
  background-color: #f4f8fb;
  font-size: 1em;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.text-customize button:hover {
  background-color: #ffd500;
}

.text-customize button[disabled] {
  opacity: 0.6;
}

.text-customize button:not(:last-child) {
  border-left: 0.5px solid #d4d4d4;
}

.text-custom-info {
  font-size: 15px;
  color: #fff;
  margin-bottom: 10px;
}

.st-menu {
  overflow-y: auto;
}

.filter-holder {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.rvfs-decrease,
.rvfs-increase {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.rvfs-decrease:hover,
.rvfs-increase:hover {
  background-color: #ffd500;
}

.alert-info {
  color: #000;
  background-color: #ffd500;
  border-color: #e7e7e7;
  font-size: 1em;
  padding-top: 24px;
  position: relative;
}

.alert-info button {
  position: absolute;
  right: 5px;
  top: 5px;
}

/*# sourceMappingURL=blind.css.map */
.bgcolorbtns {
  display: flex;
  margin: 10px 0 0 0;
  overflow: hidden;
  border-radius: 5px;
}

.bgcolorbtndef {
  flex: 1;
  border: 0;
  height: 35px;
  border: none;
}

.bgcolorbtn {
  flex: 1;
  border: none;
}

.menu-1--open + .accessibility a {
  transform: translateX(-250px) translateY(-50%);
}

@media (max-width: 1369.98px) and (min-width: 1200px) {
  .accessibility__btn {
    width: 45px;
    height: 45px;
    font-size: 0.7em;
  }
}
@media (max-width: 1199.98px) and (min-width: 992px) {
  .accessibility__btn {
    width: 45px;
    height: 45px;
    font-size: 0.7em;
  }
}
@media (max-width: 991.98px) {
  .accessibility__btn {
    width: 45px;
    height: 45px;
    font-size: 0.7em;
  }
}
@media (max-width: 991.98px) {
  .mm-wrapper_opening .mm-menu_position-bottom .sm,
.mm-wrapper_opening .mm-menu_position-front .sm,
.mm-wrapper_opening .mm-menu_position-top .sm {
    display: flex !important;
    flex-direction: column;
  }
  .mm-wrapper_opening .mm-menu_position-bottom .sm li.desk_megamenu-item,
.mm-wrapper_opening .mm-menu_position-front .sm li.desk_megamenu-item,
.mm-wrapper_opening .mm-menu_position-top .sm li.desk_megamenu-item {
    align-items: center;
    background: #fff;
    display: flex;
    justify-content: center;
    padding: 10px 20px 10px 0;
    text-align: center;
    width: 100%;
  }
  .js-mega-desk_megamenu-categories-options ul.mm-listview {
    line-height: 46px;
    padding-inline-start: 10px;
  }
}
[dir=rtl] .mm-listitem:after {
  left: 0;
  right: 0;
}

.js-mega-desk_megamenu-category {
  color: #2155cd !important;
  font-weight: bold;
  line-height: 35px;
}

button.close {
  background: rgba(0, 0, 0, 0);
  border: none;
}

.st-menu {
  background-color: #2155cd;
}

.st-menu .btn-group a.btn {
  border-inline-end: 0.5px solid #d4d4d4;
  color: var(--primary-color);
  font-family: "Vazir";
  font-size: 1.8rem;
  text-decoration: none;
  width: 33%;
}

@media (max-width: 575px) {
  header .container {
    padding: 0;
    width: 99% !important;
  }
}
.desk_megamenu {
  align-items: center;
  display: flex;
  height: 90px;
}

@media (max-width: 992px) {
  .desk_megamenu {
    display: block;
  }
}
.desk_megamenu ul li,
.desk_megamenu li {
  list-style: none;
}

.desk_megamenu > .desk_megamenu-item {
  align-items: center;
  display: flex;
  height: 90;
  text-align: center;
}

[dir=rtl] .desk_megamenu > .desk_megamenu-item {
  margin-inline-end: 1rem;
}

[dir=ltr] .desk_megamenu > .desk_megamenu-item {
  margin-inline-start: 1rem;
}

@media (max-width: 1200px) {
  [dir=rtl] .desk_megamenu > .desk_megamenu-item {
    margin-inline-end: 0.7rem;
  }
  [dir=ltr] .desk_megamenu > .desk_megamenu-item {
    margin-inline-start: 0.7rem;
  }
}
.desk_megamenu > .desk_megamenu-item > .niafam {
  color: #fff;
  font-size: 10px;
}

.desk_megamenu > .desk_megamenu-item > a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-inline-end: 7px;
}

@media (max-width: 1200px) {
  .desk_megamenu > .desk_megamenu-item > a {
    margin-inline-end: 4px;
  }
}
@media (min-width: 992px) {
  .desk_megamenu > .desk_megamenu-item > a:after,
.desk_megamenu > .desk_megamenu-item > a:before {
    background-color: #e8f9fd;
    content: "";
    height: 4px;
    position: absolute;
    top: -0.5rem;
    transition: 0.45s cubic-bezier(0.87, 0, 0.13, 1);
    width: 0;
  }
  .desk_megamenu > .desk_megamenu-item > a:after {
    inset-inline-end: 50%;
  }
  .desk_megamenu > .desk_megamenu-item > a:before {
    inset-inline-start: 50%;
  }
  .desk_megamenu > .desk_megamenu-item > a:hover > a {
    color: #fff;
  }
  .desk_megamenu > .desk_megamenu-item > a:hover > a:after,
.desk_megamenu > .desk_megamenu-item > a:hover > a:before {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .desk_megamenu > .desk_megamenu-item > a {
    color: var(--primary-color);
    display: flex;
  }
  .desk_megamenu > .desk_megamenu-item > .niafam {
    display: none;
  }
}
.desk_megamenu > .desk_megamenu-item.desk_megamenu-item-has-children > .sub-desk_megamenu {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  justify-content: space-between;
  inset-inline-end: 0;
  margin: 0 auto;
  min-height: 366px;
  opacity: 0;
  overflow: auto;
  overflow: hidden;
  padding: 15px 30px;
  position: absolute;
  inset-inline-start: 450px;
  text-align: center;
  text-align: right;
  top: 100%;
  transition: 0.15s;
  transition: 0.45s cubic-bezier(0.83, 0, 0.17, 1);
  width: 100%;
  z-index: 99999;
  display: none;
}

.desk_megamenu > .desk_megamenu-item.desk_megamenu-item-has-children > .sub-desk_megamenu:before {
  bottom: 0;
  content: "";
  inset-inline-end: 0;
  position: absolute;
  inset-inline-start: 0;
  top: 0;
}

.desk_megamenu > .desk_megamenu-item.desk_megamenu-item-has-children > .sub-desk_megamenu::after {
  background-image: linear-gradient(to left, #fff, transparent);
  z-index: -1;
}

.desk_megamenu > .desk_megamenu-item.desk_megamenu-item-has-children > .sub-desk_megamenu ul {
  display: inline-block;
  margin-bottom: 15px;
  padding: 0;
  width: 20%;
}

.desk_megamenu > .desk_megamenu-item.desk_megamenu-item-has-children > .sub-desk_megamenu ul .mega-menu__links {
  width: 100%;
}

.desk_megamenu > .desk_megamenu-item.desk_megamenu-item-has-children > .sub-desk_megamenu ul .mega-menu__links h3 {
  margin-bottom: 10px;
  text-align: start;
}

.desk_megamenu > .desk_megamenu-item.desk_megamenu-item-has-children > .sub-desk_megamenu ul .mega-menu__links h3 a {
  color: #0da1dd;
  font-size: 1rem;
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  font-weight: bold;
}

.desk_megamenu > .desk_megamenu-item.desk_megamenu-item-has-children > .sub-desk_megamenu ul .mega-menu__links ul {
  align-items: start;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: start;
  padding: 0;
  width: 100%;
}

.gird__style {
  display: grid;
  grid-template-areas: "item1 item2 item3 item4" "item5 item6 item7 item4";
  grid-gap: 0;
}

.desk_megamenu > .desk_megamenu-item.desk_megamenu-item-has-children > .sub-desk_megamenu ul:first-child {
  grid-area: item1;
}

.desk_megamenu > .desk_megamenu-item.desk_megamenu-item-has-children > .sub-desk_megamenu ul:nth-child(2) {
  grid-area: item2;
}

.desk_megamenu > .desk_megamenu-item.desk_megamenu-item-has-children > .sub-desk_megamenu ul:nth-child(3) {
  grid-area: item3;
}

.desk_megamenu > .desk_megamenu-item.desk_megamenu-item-has-children > .sub-desk_megamenu ul:nth-child(4) {
  grid-area: item4;
}

.desk_megamenu > .desk_megamenu-item.desk_megamenu-item-has-children > .sub-desk_megamenu ul:nth-child(5) {
  grid-area: item5;
}

.desk_megamenu > .desk_megamenu-item.desk_megamenu-item-has-children > .sub-desk_megamenu ul:nth-child(6) {
  grid-area: item6;
}

.desk_megamenu > .desk_megamenu-item.desk_megamenu-item-has-children > .sub-desk_megamenu ul:nth-child(7) {
  grid-area: item7;
}

.desk_megamenu > .desk_megamenu-item.desk_megamenu-item-has-children > .sub-desk_megamenu ul:nth-child(8) {
  grid-area: item8;
}

.desk_megamenu > .desk_megamenu-item.desk_megamenu-item-has-children > .sub-desk_megamenu ul .mega-menu__links ul li {
  margin-bottom: 10px;
}

.desk_megamenu > .desk_megamenu-item.desk_megamenu-item-has-children > .sub-desk_megamenu ul .mega-menu__links ul li a {
  color: #737373;
  font-weight: 400;
  moz-transition: color 0.3s;
  o-transition: color 0.3s;
  transition: color 0.3s;
  webkit-transition: color 0.3s;
}

.desk_megamenu > .desk_megamenu-item.desk_megamenu-item-has-children > .sub-desk_megamenu ul .mega-menu__links ul li:hover a {
  color: #0996ce;
}

.desk_megamenu > .desk_megamenu-item.desk_megamenu-item-has-children > .sub-desk_megamenu::before {
  background-position: center;
  background-size: cover;
  z-index: -2;
}

.desk_megamenu > .desk_megamenu-item.desk_megamenu-item-has-children > .sub-desk_megamenu::before {
  background-image: linear-gradient(to right, transparent, white), url(../img/shahr.jpg);
}

.desk_megamenu > .desk_megamenu-item.desk_megamenu-item-has-children:nth-child(2) > .sub-desk_megamenu::before {
  background-image: linear-gradient(to right, transparent, white), url(../img/bg_sanandaj.jpg);
}

.desk_megamenu > .desk_megamenu-item.desk_megamenu-item-has-children:nth-child(3) > .sub-desk_megamenu::before {
  background-image: linear-gradient(to right, transparent, white), url(../img/miz.jpg);
}

.desk_megamenu > .desk_megamenu-item.desk_megamenu-item-has-children:nth-child(4) > .sub-desk_megamenu::before {
  background-image: linear-gradient(to right, transparent, white), url(../img/shafafiat.jpg);
}

.sub-desk_megamenu.js-mega-desk_megamenu-categories-options:after {
  content: "";
  inset-inline-end: 0;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  position: absolute;
  opacity: 25%;
}

.is_active {
  inset-inline-end: 0 !important;
  opacity: 1 !important;
  inset-inline-start: 0 !important;
  visibility: visible !important;
  display: flex !important;
}

.active__grid {
  display: grid !important;
  inset-inline-end: 0 !important;
  opacity: 1 !important;
  inset-inline-start: 0 !important;
  visibility: visible !important;
}

.active__grid ul {
  width: fit-content !important;
}

.desk_megamenu > .desk_megamenu-item > .niafam {
  color: #fff;
  content: "\e919";
  transform: rotate(-90deg);
  font-size: 0.5rem;
  font-size: clamp(0.5rem, 0.4375rem + 0.3125vw, 0.8125rem);
}

.niafam-down-arrow:before {
  content: "\e919";
}

.header_inner_page .top-header .container .desk_megamenu > li {
  transition: 0.5s;
}

.header_inner_page .top-header .container .desk_megamenu > li:hover a, .header_inner_page .top-header .container .desk_megamenu > li:hover i {
  color: var(--yellow);
}

@media (max-width: 992px) {
  .header__menu {
    margin-inline-end: auto;
    margin-inline-start: 30px;
  }
  .mburger b {
    background-color: white;
  }
  .mburger b:not(:last-child) {
    margin-bottom: 6px;
  }
}
.share-social-media {
  opacity: 0;
  visibility: hidden;
  transition: 0.9s;
  width: 140px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  color: var(--secondary-color);
  position: absolute;
  inset-inline-end: calc(100% + 10px);
  background: rgba(52, 58, 64, 0.7);
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  font-size: 12px;
  padding: 10px;
  font-weight: 400;
}
.share-social-media a {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.share-social-media a:last-child {
  margin-bottom: 0;
}
.share-social-media a:hover {
  color: var(--yellow);
}
.share-social-media img {
  width: 15px;
  height: 15px;
  margin-inline-end: 10px;
}

:root {
  --purpel: #424874;
}

.title_style {
  height: fit-content;
  padding-inline-start: var(--margin-m);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  color: var(--primary-color);
  padding-top: min(6vh, 10px);
}
.title_style h2 {
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
  font-weight: bold;
}
.title_style span {
  height: 5px;
  display: inline-flex;
  border-radius: 50px;
}
.title_style span:first-child, .title_style span:last-child {
  width: 0.9375rem;
  width: clamp(0.9375rem, 0.75rem + 0.9375vw, 1.875rem);
  background-color: var(--primary-color);
}
.title_style span:nth-child(2), .title_style span:nth-child(4) {
  width: 0.46875rem;
  width: clamp(0.46875rem, 0.375rem + 0.46875vw, 0.9375rem);
  background: rgba(64, 64, 64, 0.5);
}
.title_style span:nth-child(4), .title_style span:first-child {
  margin-inline-end: 3px;
}
.title_style span:nth-child(2) {
  margin-inline-end: 15px;
}
.title_style span:nth-child(4) {
  margin-inline-start: 15px;
}

.header_inner_page {
  height: fit-content;
  width: 100%;
  position: relative;
  margin-bottom: var(--margin-l);
}
.header_inner_page .bg_header {
  background-image: var(--bg-header);
  background-size: cover;
  background-position: 100% 50%;
  position: absolute;
  width: 100%;
  height: 100%;
}
.header_inner_page .bg_header:after {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  inset-block-end: 0;
  inset-inline-end: 0;
  z-index: 9;
  background: rgb(var(--color1-RGB));
  width: 100%;
  height: 100%;
  opacity: 0.75;
}
.header_inner_page .top-header {
  position: relative;
  inset-block-start: 0;
  inset-inline-start: 0;
  inset-block-end: 0;
  inset-inline-end: 0;
  z-index: 10;
}
.header_inner_page .top-header:after {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  inset-block-end: 0;
  inset-inline-end: 0;
  z-index: 1;
  background: rgba(var(--color1-RGB), 0.3);
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(2.5px);
}
.header_inner_page .top-header .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
  inset-block-start: 0;
  inset-inline-start: 0;
  inset-block-end: 0;
  inset-inline-end: 0;
  z-index: 2;
}
.header_inner_page .top-header .container .logo {
  max-width: 38px;
  height: 50px;
}
.header_inner_page .top-header .container .logo img {
  width: 100%;
  height: 100%;
}
.header_inner_page .top-header .container .header__menu {
  margin-inline-end: auto;
  margin-inline-start: var(--margin-l);
}
@media (max-width: 1200px) {
  .header_inner_page .top-header .container .header__menu {
    margin-inline-start: 15px;
  }
}
@media (max-width: 992px) {
  .header_inner_page .top-header .container .header__menu {
    margin-inline-start: var(--margin-l);
  }
}
.header_inner_page .top-header .container .desk_megamenu {
  height: 70px;
}
.header_inner_page .top-header .container .sm li a,
.header_inner_page .top-header .container .desk_megamenu li a {
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  color: var(--secondary-color);
  font-weight: 500;
}
.header_inner_page .top-header .container .desk_megamenu > li {
  height: 100%;
}
.header_inner_page .top-header .container .header_left_box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  height: 15px;
  margin: 10px 0;
}
.header_inner_page .top-header .container .header_left_box a {
  color: var(--secondary-color);
  transition: 0.3s;
}
.header_inner_page .top-header .container .header_left_box a:hover {
  color: var(--yellow);
}
.header_inner_page .top-header .container .header_left_box .top_left_box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.header_inner_page .top-header .container .header_left_box .top_left_box .lan {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
}
.header_inner_page .top-header .container .header_left_box .top_left_box .social {
  border-inline-start: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
}
.header_inner_page .top-header .container .header_left_box .top_left_box .social a {
  height: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-inline-start: 10px;
    align-items: center;
}
.header_inner_page .top-header .container .header_left_box .top_left_box .social a i {
  font-size: 0.625rem;
  font-size: clamp(0.625rem, 0.5625rem + 0.3125vw, 0.9375rem);
}
@media (max-width: 1200px) {
  .header_inner_page .top-header .container .header_left_box .top_left_box .social a {
    margin-inline-start: 5px;
  }
}
@media (max-width: 500px) {
  .header_inner_page .top-header .container .header_left_box .top_left_box .social a {
    margin-inline-end: 5px;
  }
}
@media (min-width: 992px) {
  .header_inner_page .top-header .container .header_left_box .top_left_box .social {
    margin-inline-start: 5px;
  }
}
.header_inner_page .top-header .container .header_left_box .top_left_box .lan i {
  font-size: 4px;
  margin-inline-start: 3px;
  vertical-align: middle;
}
.header_inner_page .top-header .container .header_left_box .top_left_box .lan a {
  font-size: 12px;
  font-weight: 400;
  margin-inline-end: 10px;
}
@media (max-width: 1200px) {
  .header_inner_page .top-header .container .header_left_box .top_left_box .lan a {
    margin-inline-end: 5px;
  }
}
@media (max-width: 500px) {
  .header_inner_page .top-header .container .header_left_box .top_left_box .lan a {
    margin-inline-end: 5px;
  }
}
.header_inner_page .top-header .container .header_left_box .bottom_left_box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.3);
  padding-inline-start: 10px;
  margin-inline-start: 10px;
}
@media (max-width: 1200px) {
  .header_inner_page .top-header .container .header_left_box .bottom_left_box {
    padding-inline-start: 5px;
    margin-inline-start: 5px;
  }
}
.header_inner_page .top-header .container .header_left_box .bottom_left_box .user {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.header_inner_page .top-header .container .header_left_box .bottom_left_box .user i {
  font-size: 0.625rem;
  font-size: clamp(0.625rem, 0.5625rem + 0.3125vw, 0.9375rem);
  margin-inline-end: 10px;
}
.header_inner_page .top-header .container .header_left_box .bottom_left_box .calendar {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  color: var(--secondary-color);
  font-size: 10px;
  font-weight: 400;
  transition: 0.3s;
}
.header_inner_page .top-header .container .header_left_box .bottom_left_box .calendar i {
  font-size: 0.625rem;
  font-size: clamp(0.625rem, 0.5625rem + 0.3125vw, 0.9375rem);
  margin-inline-end: 6px;
}
@media (max-width: 768px) {
  .header_inner_page .top-header .container .header_left_box {
    flex-direction: column;
    height: fit-content;
  }
  .header_inner_page .top-header .container .header_left_box .top_left_box {
    padding-bottom: var(--margin-s);
    border-bottom: 1px solid #ccc;
    margin-bottom: 5px;
  }
  .header_inner_page .top-header .container .header_left_box .bottom_left_box {
    border: none;
    margin-inline-start: 0;
    padding-inline-start: 0;
  }
}
.header_inner_page .middle-header {
  position: relative;
  inset-block-start: 0;
  inset-inline-start: 0;
  inset-block-end: 0;
  inset-inline-end: 0;
  z-index: 9;
  color: var(--secondary-color);
  padding-top: 30px;
  padding-bottom: 60px;
}
@media screen and (max-width: 992px) {
  .header_inner_page .middle-header {
    padding-top: 15px;
  }
}
.header_inner_page .middle-header .container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: start;
  align-items: flex-start;
  position: relative;
}
.header_inner_page .middle-header .container .title {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-height: 50px;
}
.header_inner_page .middle-header .container .title h1 {
  font-family: "pinar";
  font-size: 1.75rem;
  font-size: clamp(1.75rem, 2.05rem - 0.25vw, 2rem);
  font-weight: 700;
  margin-top: 0;
  margin-inline-end: 30px;
}
@media (max-width: 500px) {
  .header_inner_page .middle-header .container .title h1 {
    margin-inline-end: 5px;
  }
}
.header_inner_page .middle-header .container .title div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: rgba(10, 161, 221, 0.6);
  border-radius: 100px;
  height: 25px;
  width: 163px;
}
.header_inner_page .middle-header .container .title div img {
  height: 15px;
  width: 19.77px;
  margin-inline-end: 5px;
}
.header_inner_page .middle-header .container .title div span {
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
  font-weight: 400;
}
@media (max-width: 500px) {
  .header_inner_page .middle-header .container .title {
    flex-direction: column;
    max-height: fit-content;
  }
}
.header_inner_page .middle-header .container > p {
  margin-top: 10px;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
  font-weight: 500;
  max-width: 630px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: start;
}
@supports (-webkit-line-clamp: 2) {
  .header_inner_page .middle-header .container > p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.header_inner_page .middle-header .container .box__settings {
  position: absolute;
  inset-inline-end: 0;
  top: 50%;
  transform: translateY(-50%);
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .header_inner_page .middle-header .container .box__settings {
    top: 30%;
  }
}
.header_inner_page .middle-header .container .box__settings li {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-inline-start: 10px;
  transition: 0.5s;
  position: relative;
  cursor: pointer;
}
.header_inner_page .middle-header .container .box__settings li:before {
  content: "";
  position: absolute;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #ADB5BD;
  top: -7px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.header_inner_page .middle-header .container .box__settings li:first-child::before {
  right: -15px;
  top: 50%;
  transform: rotate(90deg);
}
.header_inner_page .middle-header .container .box__settings li i {
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.7875rem + 0.125vw, 0.9375rem);
  transition: 0.5s;
}
@media screen and (max-width: 992px) {
  .header_inner_page .middle-header .container .box__settings li {
    width: fit-content;
    background-color: transparent;
  }
}
.header_inner_page .middle-header .container .box__settings li p {
  opacity: 0;
  visibility: hidden;
  transition: 0.9s;
  background: rgba(52, 58, 64, 0.7);
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  width: max-content;
  height: 29px;
  font-size: 12px;
  font-weight: 700;
  position: absolute;
  top: -36px;
	padding: 0 10px;
}
.header_inner_page .middle-header .container .box__settings li:hover:nth-child(3) i {
  color: #F9595F;
}
.header_inner_page .middle-header .container .box__settings li:hover:nth-child(2) i {
  color: var(--yellow);
}
.header_inner_page .middle-header .container .box__settings li:hover:before,
.header_inner_page .middle-header .container .box__settings li:hover p,
.header_inner_page .middle-header .container .box__settings li:hover div {
  opacity: 1;
  visibility: visible;
}
.header_inner_page .middle-header .container .box__settings li:hover i {
  font-size: 1.3125rem;
  font-size: clamp(1.3125rem, 1.2625rem + 0.25vw, 1.5625rem);
}
.header_inner_page .middle-header .center {
  align-items: center;
}
.header_inner_page > .container {
  position: relative;
  z-index: 9;
}
.header_inner_page > .container .bottom-header {
  position: absolute;
  bottom: -30px;
  height: 60px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2.5px);
  /* Note: backdrop-filter has minimal browser support */
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 100px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .header_inner_page > .container .bottom-header {
    width: 90%;
  }
}
.header_inner_page > .container .bottom-header ul {
  padding: 0;
  margin-inline-start: var(--margin-m);
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .header_inner_page > .container .bottom-header ul {
    margin-inline-start: 10px;
  }
}
.header_inner_page > .container .bottom-header ul li {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-inline-end: 5px;
  transition: 0.3s;
}
@media screen and (max-width: 992px) {
  .header_inner_page > .container .bottom-header ul li {
    margin-inline-end: 8px;
  }
}
.header_inner_page > .container .bottom-header ul li a {
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  font-weight: 400;
}
.header_inner_page > .container .bottom-header ul li::after {
  	/*content: "\e919";*/
	content: "/";
  /*font-family: "niafam";*/
  margin-inline-start: 5px;
  font-size: 14px;
}
@media (max-width: 992px) {
  .header_inner_page > .container .bottom-header ul li::after {
    margin-inline-start: 5px;
  }
}
.header_inner_page > .container .bottom-header ul li:last-child::after {
  display: none;
}
.header_inner_page > .container .bottom-header ul li:hover a {
  color: var(--blue);
}
.header_inner_page > .container .bottom-header .search {
  margin-inline-end: var(--margin-m);
  background: linear-gradient(180deg, #0AA1DD 0%, #FFFFFF 100%, #2155CD 100%);
  box-shadow: 0px 15px 30px rgba(var(--color1-RGB), 0.15);
  border-radius: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.5s;
}
.header_inner_page > .container .bottom-header .search i {
  font-size: 20px;
  color: var(--blue);
}
.header_inner_page > .container .bottom-header .search:hover {
  background: linear-gradient(180deg, #3c65c5 0%, #FFFFFF 100%, #2155CD 100%);
}
.header_inner_page > .container .bottom-header .search:hover i {
  color: white;
}

.overlay {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  flex-flow: row wrap;
  height: 100%;
  inset-inline-end: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999999;
}

.overlay .closebtn {
  color: #fff;
  cursor: pointer;
  font-size: 60px;
  position: absolute;
  inset-inline-start: 45px;
  top: 20px;
}

.overlay .closebtn:hover {
  color: #ccc;
}

.overlay input[type=text] {
  align-items: center;
  background: rgba(0, 0, 0, 0);
  border: none;
  border-color: rgba(0, 0, 0, 0);
  color: #fff !important;
  font-size: 24px;
  padding: 15px;
  text-align: center;
  width: 80%;
}

.overlay button {
  background-color: #0aa1dd;
  border: none;
  cursor: pointer;
  font-size: 17px;
  margin-top: 40px;
  padding: 10px;
  width: 20%;
}

.overlay button:hover {
  background: #0aa1dd;
}

.overlay-content {
  margin: auto;
  margin-top: 30px;
  text-align: center;
  width: 100%;
}

.overlay-content form {
  align-items: center;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  margin: 0 auto;
  width: 50%;
}

.overlay input[type=text]:focus,
.overlay input[type=text]:focus-visible {
  border-bottom: 1px solid #0aa1dd;
  outline: rgba(0, 0, 0, 0) !important;
}

.overlay-content p {
  color: #fff;
  margin-top: 20px;
  text-align: center;
}

.overlay-content input::placeholder {
  color: #fff;
}

.overlay-content form {
  position: absolute;
  top: 50%;
  inset-inline-end: 50%;
  transform: translate(-50%, -50%);
}

.login_popup {
  background: white;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  position: absolute;
  z-index: 999;
  top: 133%;
  left: 58px;
  display: none;
  justify-content: center;
  align-content: right;
  text-align: right;
  flex-flow: column wrap;
  padding: 5px 10px;
  width: 170px;
}

.login_popup a {
  font-size: 1.3rem;
  margin-bottom: 18px;
  color: #06283d;
  transition: 0.3s;
  cursor: pointer;
}

.login_popup a:hover {
  color: #2155cd;
}

.active_popup {
  display: flex;
}

footer {
  margin-top: var(--margin-l);
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  footer {
    height: 970px;
  }
}
footer .bg_footer {
  background-image: var(--bg-footer);
  background-size: cover;
  background-position: 100% 50%;
  position: absolute;
  width: 100%;
  height: 100%;
}
footer .bg_footer:after {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  inset-block-end: 0;
  inset-inline-end: 0;
  z-index: 9;
  background: rgba(255, 255, 255, 0.3);
  width: 100%;
  height: 100%;
}
footer .details-footer {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 0 auto;
  z-index: 99;
  justify-content: space-between;
}
@media (min-width: 560px) {
  footer .details-footer {
    flex-direction: row;
  }
}
@media (max-width: 1200px) {
  footer .details-footer {
    width: 98%;
    margin-inline-start: auto;
    margin-inline-end: auto;
    margin-top: 30px;
    justify-content: space-evenly;
  }
}
footer .details-footer .map_footer {
  border-radius: 20px;
  width: min(20%, 260px);
  height: 30vh;
  overflow: hidden;
  margin-inline-end: var(--margin-m);
}
@media (min-width: 992px) {
  footer .details-footer .map_footer {
    height: 322px;
  }
}
footer .details-footer .map_footer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1200px) {
  footer .details-footer .map_footer {
    margin-inline-end: 10px;
    width: 15%;
    height: 280px;
  }
}
@media (max-width: 992px) {
  footer .details-footer .map_footer {
    width: 47%;
  }
}
@media (max-width: 560px) {
  footer .details-footer .map_footer {
    margin-inline-start: 15px;
    width: 90%;
    height: 25vh;
  }
}
footer .details-footer .title_style {
  padding: 0;
  margin-bottom: var(--margin-m);
}
footer .details-footer .title_style > i {
  font-size: 30px;
  color: #EC524B;
  margin-inline-end: 10px;
}
footer .details-footer .title_style span:first-child {
  background: #EC524B;
}
footer .details-footer .title_style span:nth-child(2) {
  background: rgba(236, 82, 75, 0.5);
  margin-inline-end: 10px;
}
footer .details-footer .title_style span h2 {
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  font-weight: 700;
  color: rgb(var(--color1-RGB));
}
footer .details-footer .footer-box-item {
  margin-inline-end: var(--margin-l);
}
footer .details-footer .footer-box-item ul {
  padding: 0;
  list-style: none;
}
footer .details-footer .footer-box-item ul li {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 10px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  font-weight: 500;
  color: black;
  font-family: vazir;
}
footer .details-footer .footer-box-item ul li a {
  transition: 0.3s;
}
footer .details-footer .footer-box-item ul li span:nth-child(2) {
  color: rgb(var(--color1-RGB));
}
footer .details-footer .footer-box-item ul li span:last-child {
  max-width: 220px;
}
footer .details-footer .footer-box-item ul li i {
  font-size: 1rem;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  width: 20px;
  height: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(var(--color1-RGB));
  color: rgb(var(--color1-RGB));
  border-radius: 50%;
  margin-inline-end: var(--margin-s);
}
@media (min-width: 992px) {
  footer .details-footer .footer-box-item ul li i {
    width: 30px;
    height: 30px;
  }
}
footer .details-footer .footer-box-item ul li .dots_list {
  position: static;
}
footer .details-footer .footer-box-item ul li .dots_list span:first-child {
  background-color: #444444;
}
footer .details-footer .footer-box-item ul li .dots_list span:nth-child(2) {
  background: rgba(68, 68, 68, 0.7);
}
footer .details-footer .footer-box-item ul li .dots_list span:last-child {
  background: rgba(68, 68, 68, 0.4);
  margin-inline-end: 10px;
}
footer .details-footer .footer-box-item ul li:hover a {
  color: var(--blue);
}
footer .details-footer .footer-box-item .update {
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
  color: #444444;
  font-weight: 500;
  margin-top: 15px;
}
@media (max-width: 1200px) {
  footer .details-footer .footer-box-item {
    margin-inline-end: 5px;
  }
}
@media (max-width: 992px) {
  footer .details-footer .footer-box-item {
    width: 47%;
    margin-top: 30px;
  }
}
@media (max-width: 560px) {
  footer .details-footer .footer-box-item {
    margin-inline-start: 15px;
    width: 90%;
  }
}
footer .details-footer .footer-box-item:last-child {
  margin-inline-end: 0;
}
footer .details-footer .footer-box-item:nth-child(3) ul li {
  font-weight: 400;
}
footer .details-footer .footer-box-item:nth-child(2) ul li {
  flex-wrap: nowrap;
}
footer .details-footer .footer-box-item .bottom-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
footer .details-footer .footer-box-item .bottom-box .enamad {
  width: 92px;
  height: 100px;
  overflow: hidden;
}
footer .details-footer .footer-box-item .bottom-box .enamad img {
  width: 100%;
  height: 100%;
}
footer .details-footer .footer-box-item .bottom-box .social-footer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
footer .details-footer .footer-box-item .bottom-box .social-footer i {
  font-size: 1rem;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  margin-inline-end: 7px;
  color: #444444;
  transition: 0.3s;
}
footer .details-footer .footer-box-item .bottom-box .social-footer i:hover {
  color: var(--blue);
}
footer .bottom-footer {
  position: absolute;
  z-index: 99;
  width: 100%;
  height: 65px;
  bottom: var(--margin-l);
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}
@media (max-width: 992px) {
  footer .bottom-footer {
    position: relative;
    margin-top: 60px;
  }
}
footer .bottom-footer p,
footer .bottom-footer a {
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  font-weight: 400;
  color: #444444;
}
footer .bottom-footer > a {
  margin-top: 15px;
}
footer .bottom-footer > a:hover {
  color: var(--blue);
}
footer .bottom-footer p:hover a {
  color: var(--blue);
}