html,
body {
  /*height: 100%;*/
  margin: 0;
  padding: 0;
}
body {
  direction: rtl;
  font-family: 'Vazirmatn', sans-serif;
  background-color: #fff;
  color: #333;
  display: flex;
  flex-direction: column;
}
a {
  text-decoration: none;
  color: inherit;
}
main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
main .main-content {
  padding: 3% 5%;
}
@media (max-width: 768px) {
  main {
    overflow-y: visible;
  }
}
#loginform {
  text-align: center;
  width: 50%;
  margin: 0 auto;
}
#loginform img.logo {
  width: 400px;
}
#loginform #login_frame {
  padding: 60px;
  background-color: #f1f2f2;
}
#loginform #login_frame .frmbox {
  display: flex;
  align-content: space-around;
}
#loginform #login_frame .frmbox .textbox {
  width: 100%;
  padding: 0 10px;
}
#loginform .miaad-button {
  font-size: 18px;
  margin-top: -40px;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 768px) {
  .mobile-hidden {
    display: none !important;
  }
}
body.sidebar-active {
  overflow: hidden;
}
header {
  background-color: #fff;
  padding: 0 5%;
  /*border-bottom: 2px solid @border-gray;*/
  flex-shrink: 0;
  position: relative;
  z-index: 20;
}
header .header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-top .logo-right img,
header .header-top .logo-left img {
  max-height: 80px;
  transition: max-height 0.3s ease;
}
@media (max-width: 768px) {
  header .header-top {
    justify-content: center;
    flex-direction: column;
  }
}
header .mobile-bar {
  display: none;
  justify-content: space-between;
  align-items: center;
  background-color: #f1f2f2;
}
header .mobile-bar .menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0 10px;
  margin-right: 10px;
  margin-top: -5px;
  border: none;
  cursor: pointer;
  color: #26c7fc;
  background: none;
  font-size: 30px;
}
header nav#sidebar-menu {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  /*border-top: 1px solid #eee;*/
  margin-top: -4px;
  /*background-color: @bg-gray-light;*/
}
header nav#sidebar-menu .close-menu {
  display: none;
}
header nav#sidebar-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
header nav#sidebar-menu ul li a {
  display: block;
  background-color: #f1f2f2;
  padding: 15px 15px;
  font-size: 0.9rem;
  font-weight: bold;
  color: #555;
  transition: color 0.3s;
  /*border-left: 1px solid lighten(@bg-gray-light, 5%);*/
}
header nav#sidebar-menu ul li a:hover,
header nav#sidebar-menu ul li a.active {
  color: #26c7fc;
}
header nav#sidebar-menu ul li:nth-of-type(7n+1) a {
  color: #017bb9;
}
header nav#sidebar-menu ul li:nth-of-type(7n+2) a {
  color: #26c7fc;
}
header nav#sidebar-menu ul li:nth-of-type(7n+3) a {
  color: #669d24;
}
header nav#sidebar-menu ul li:nth-of-type(7n+4) a {
  color: #aec000;
}
header nav#sidebar-menu ul li:nth-of-type(7n+5) a {
  color: #f9b000;
}
header nav#sidebar-menu ul li:nth-of-type(7n+6) a {
  color: #d85509;
}
header nav#sidebar-menu ul li:nth-of-type(7n+7) a {
  color: #e29100;
}
header nav#sidebar-menu .login-button {
  background-color: #26c7fc;
  color: #fff;
  font-weight: bold;
  transition: background-color 0.3s;
  white-space: nowrap;
  margin-right: 10px;
}
header nav#sidebar-menu .login-button:hover {
  color: #f8ff73;
  background-color: #0dc1fc;
}
@media (max-width: 768px) {
  header .mobile-bar {
    display: flex;
  }
  header .mobile-bar .menu-toggle {
    display: block;
  }
  header nav#sidebar-menu {
    display: block;
    position: fixed;
    top: 0;
    right: -340px;
    width: 280px;
    height: 100%;
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    z-index: 101;
    border-top: none;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-top: 0;
    overflow-y: auto;
  }
  header nav#sidebar-menu.is-open {
    right: 0;
  }
  header nav#sidebar-menu .close-menu {
    display: block;
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 2.5rem;
    background: none;
    border: none;
    color: #555;
    cursor: pointer;
  }
  header nav#sidebar-menu ul {
    flex-direction: column;
    width: 100%;
    margin-top: 50px;
  }
  header nav#sidebar-menu ul li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }
  header nav#sidebar-menu ul li a {
    padding: 15px;
    display: block;
    text-align: right;
  }
}
.virtual-tour-button {
  position: fixed;
  left: 0;
  top: 150px;
  background-color: #e29100;
  color: #fff;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 15px 8px;
  border-radius: 8px 0 0 8px;
  font-weight: bold;
  z-index: 1000;
}
@media (max-width: 768px) {
  .virtual-tour-button {
    display: none;
  }
}
.miaad-button,
.miaad-lable {
  color: #fff;
  width: 150px;
  padding: 22px 10px;
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
  text-decoration: none;
}
.miaad-button.miaad-button,
.miaad-lable.miaad-button {
  cursor: pointer;
}
.miaad-button::after,
.miaad-lable::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 17px 0;
  /* اندازه مثلث گوشه */
  border-color: transparent #ffffff transparent transparent;
  /* رنگ سفید مثلث */
  transform-origin: 100% 0%;
  transition: transform 0.2s;
  box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
}
.miaad-button.miaad-button:hover,
.miaad-lable.miaad-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
.miaad-button.miaad-button:active,
.miaad-lable.miaad-button:active {
  transform: translateY(0);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
.miaad-button.orange,
.miaad-lable.orange {
  background-color: #f37736;
}
.miaad-button.green,
.miaad-lable.green {
  background-color: #aec000;
}
.miaad-button.blue,
.miaad-lable.blue {
  background-color: #27b2f3;
}
@media (max-width: 768px) {
  .miaad-button,
  .miaad-lable {
    /*        width: 120px;
                padding: 6px 30px;*/
    box-sizing: border-box;
    font-size: 1rem;
    margin-bottom: 7px;
  }
}
.vtour-button {
  width: 100px;
  padding: 22px 10px;
  box-sizing: border-box;
  text-align: center;
  color: #fff !important;
  background-color: #e29100 !important;
  margin-right: 15px;
}
@media (max-width: 768px) {
  .vtour-button {
    width: 100%;
    margin: 0 auto 40px 0;
  }
}
.login-button {
  display: block;
  box-sizing: border-box;
  text-align: center;
  color: #fff;
  background-color: #26c7fc;
  margin-right: 0;
}
/*@import "../index.less";*/
/*@brand-green: #034c31;      // سبز اصلی (تیتر/CTA)*/
.gradient-bg-green {
  background-image: linear-gradient(86deg, #024E32 0%, #558C60 62%, #A8C98E 99%);
}
.gradient-bg-grey {
  background-image: linear-gradient(86deg, #1F2620 0%, #4F534F 62%, #7E7F7E 99%);
}
.gradient-bg-grey {
  background-image: linear-gradient(86deg, #D8EBCD 0%, #E8F2E2 62%, #F8F8F6 99%);
}
.btn3_copy_2 {
  border-width: 0px;
  border-color: #000000;
  border-style: solid;
  border-width: 1px;
  border-color: #b1d1b6;
  border-radius: 15px;
  background-image: -moz-linear-gradient(86deg, #d8ebcd 0%, #e8f2e2 62%, #f8f8f6 99%);
  background-image: -webkit-linear-gradient(86deg, #d8ebcd 0%, #e8f2e2 62%, #f8f8f6 99%);
  background-image: -ms-linear-gradient(86deg, #d8ebcd 0%, #e8f2e2 62%, #f8f8f6 99%);
  box-shadow: 0px 3px 3.28px 0.72px rgba(36, 95, 63, 0.96);
  width: 233px;
  height: 72px;
}
.btn_2 {
  border-width: 0px;
  border-color: #000000;
  border-style: solid;
  border-radius: 15px;
  background-image: -moz-linear-gradient(86deg, #1f2620 0%, #4f534f 62%, #7e7f7e 99%);
  background-image: -webkit-linear-gradient(86deg, #1f2620 0%, #4f534f 62%, #7e7f7e 99%);
  background-image: -ms-linear-gradient(86deg, #1f2620 0%, #4f534f 62%, #7e7f7e 99%);
  position: absolute;
  left: 614px;
  top: 29px;
  width: 157px;
  height: 49px;
  z-index: 8;
}
/*fonts*/
footer {
  background: #3F4650;
  color: #fff;
  margin-top: 28px;
  padding: 10px 5%;
  z-index: 19;
}
footer .footer-content {
  display: flex;
  justify-content: center;
  gap: 135px;
  margin: 0 auto;
  align-items: center;
  flex-wrap: wrap;
}
footer .footer-content .footer-column .footer-item {
  display: flex;
  justify-content: center;
  align-items: baseline;
}
footer .footer-content .footer-column .footer-item i {
  padding: 0 7px;
}
footer .footer-content .footer-column h4 {
  color: #8afdd2;
  margin: 0 0 12px;
  text-align: center;
  border-bottom: 1px solid #8afdd2;
  padding: 5px 0;
}
footer .footer-content .footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  margin: 8px 0;
  text-align: center;
}
footer .footer-content .footer-column a:hover {
  color: #fff;
}
footer .footer-content .footer-column .social a {
  padding: 6px 8px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.3s ease-out;
}
footer .footer-content .footer-column .social a:hover {
  background-color: rgba(255, 255, 255, 0.28);
  transition: all 0.3s ease-out;
}
@media (max-width: 768px) {
  footer .footer-content {
    flex-direction: column;
    gap: 20px;
    padding: 10px;
  }
  footer .footer-content .footer-column {
    margin-bottom: 15px;
  }
}
footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  text-align: center;
}
#news_page {
  justify-content: space-between;
  display: flex;
}
#news_page .news_list {
  width: 45%;
  display: block;
  margin-left: 20px;
}
#news_page .news_list ul {
  padding: 0;
}
#news_page .news_list ul li {
  list-style: none;
}
#news_page .news_list ul li a {
  background-color: #f1f2f2;
  padding: 10px;
  margin-bottom: 5px;
  display: flex;
}
#news_page .news_list ul li a .news_image {
  width: 39%;
}
#news_page .news_list ul li a .news_image img {
  width: 100%;
}
#news_page .news_list ul li a .headline {
  width: 60%;
  padding-right: 10px;
}
#news_page .news_list ul li a .headline .news_link_title {
  font-weight: bold;
  color: #26c7fc;
}
#news_page .news_list ul li a .headline .abs {
  color: #f37736;
  text-align: justify;
  padding: 0;
  margin: 0;
  height: 120px;
  overflow-y: hidden;
  font-weight: normal;
  font-size: smaller;
}
#news_page .news_list ul li .news_arrow {
  position: relative;
  top: 60px;
  left: -22px;
}
#news_page .news_list ul li .news_arrow img {
  width: 30px;
}
#news_page .news_current {
  width: 50%;
}
#news_page .news_current img {
  width: 100%;
}
#news_page .news_current .title {
  color: #16a4e3;
  font-weight: bold;
}
#news_page .news_current .abs {
  display: none;
}
#news_page .news_current .news_body {
  color: #f37736;
  text-align: justify;
}
#news_page .news_current .detail {
  border-top: 1px solid #ddd;
  text-align: left;
  color: #aec000;
}
@media (max-width: 768px) {
  #news_page {
    justify-content: space-between;
    flex-direction: column-reverse;
  }
  #news_page .news_list {
    width: 100%;
  }
  #news_page .news_list ul li a {
    flex-direction: column;
  }
  #news_page .news_list ul li a .news_image {
    width: 100%;
  }
  #news_page .news_list ul li a .headline {
    width: 100%;
    padding: 10px;
  }
  #news_page .news_list ul li a .headline .abs {
    height: auto;
  }
  #news_page .news_list ul li .news_arrow {
    width: 100%;
    text-align: left;
    position: relative;
    top: -15px;
    left: -22px;
  }
  #news_page .news_current {
    width: 100%;
  }
}
#contact-us #call-us {
  width: 50%;
  margin: 0 auto;
}
#contact-us #call-us table {
  width: 100%;
}
#contact-us #call-us table td {
  text-align: left;
  padding: 3px;
  color: #16a4e3;
}
#contact-us #call-us input,
#contact-us #call-us textarea {
  width: 100%;
  margin-right: 10px;
  padding: 5px;
  text-align: right;
}
#contact-us #call-us #captcha_box {
  text-align: center;
}
#contact-us #call-us .miaad-button {
  display: block;
  margin: 10px auto;
}
#contact-us #call-us .select2-container {
  width: 98%;
}
#contact-us #call-us .post-pm {
  text-align: center;
  width: 50%;
  margin: 10px auto;
  padding: 30px;
  background: #f1f2f2;
  border: 1px solid #ddd;
  color: #aec000;
}
#contact-us #call-us .color1 {
  border: 1px solid #017bb9;
}
#contact-us #call-us .color2 {
  border: 1px solid #26c7fc;
}
#contact-us #call-us .color3 {
  border: 1px solid #669d24;
}
#contact-us #call-us .color4 {
  border: 1px solid #aec000;
}
#contact-us #call-us .color5 {
  border: 1px solid #f9b000;
}
#contact-us #call-us .color6 {
  border: 1px solid #d85509;
}
@media (max-width: 768px) {
  #contact-us #call-us {
    width: 100%;
  }
}
#contact-us .post-pm {
  display: none;
  padding: 35px;
  width: 50%;
  background-color: #f1f2f2;
  margin: 0 auto;
  text-align: center;
  color: #16a4e3;
}
#contact-us #our-information {
  margin-top: 30px;
}
#contact-us #our-information div {
  display: flex;
  justify-content: center;
  text-align: center;
}
#contact-us #our-information div.address {
  color: #26c7fc;
}
#contact-us #our-information div.phone {
  color: #f37736;
}
/*@import "../";*/
/*# sourceMappingURL=style.css.map */